Jak usunąć wybrane klucze z mapy? Czy łączenie delete()z zakresem jest bezpieczne , jak w kodzie poniżej? package main import "fmt" type Info struct { value string } func main() { table := make(map[string]*Info) for i := 0; i < 10; i++ { str := fmt.Sprintf("%v", i) table[str] =...