remove: map as sets

This commit is contained in:
Inanc Gumus
2019-05-05 18:22:04 +03:00
parent 27d6620361
commit 1f4776b143
5 changed files with 0 additions and 35 deletions

View File

@@ -0,0 +1,52 @@
// For more tutorials: https://blog.learngoprogramming.com
//
// Copyright © 2018 Inanc Gumus
// Learn Go Programming Course
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
//
package main
import (
"fmt"
)
func main() {
// args := os.Args[1:]
// if len(args) != 1 {
// fmt.Println("[english word] -> [turkish word]")
// return
// }
// query := args[0]
// #1: Nil Map: Read-Only
var dict map[string]string
// #5: You cannot assign to a nil map.
// dict["up"] = "yukarı"
// dict["down"] = "aşağı"
// #2: Map retrieval is O(1) — on average.
key := "good"
value := dict[key]
fmt.Printf("%q means %#v\n", key, value)
// #1B
fmt.Printf("# of Keys: %d\n", len(dict))
// fmt.Printf("Zero Value: %#v\n", dict)
// #4: Nil map ready to use
// if dict != nil {
// value := dict[key]
// fmt.Printf("%q means %#v\n", key, value)
// }
// #3: Cannot use non-comparable types as map key types
// var broken map[[]int]int
// var broken map[map[int]string]bool
//
// A map can only be compared to nil value
// _ = dict == nil
}