code.go 787 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. package main
  2. import (
  3. "bufio"
  4. "fmt"
  5. "log"
  6. "os"
  7. "strings"
  8. )
  9. func readInput(file *os.File) map[string][]string {
  10. scanner := bufio.NewScanner(file)
  11. computers := make(map[string][]string)
  12. for scanner.Scan() {
  13. line := scanner.Text()
  14. if line == "" {
  15. break
  16. }
  17. parts := strings.Split(line, "-")
  18. if len(parts) != 2 {
  19. log.Fatalf("Bad input: %s", line)
  20. }
  21. computers[parts[0]] = append(computers[parts[0]], parts[1])
  22. computers[parts[1]] = append(computers[parts[1]], parts[0])
  23. }
  24. return computers
  25. }
  26. func main() {
  27. if len(os.Args) < 2 {
  28. log.Fatal("You need to specify a file!")
  29. }
  30. filePath := os.Args[1]
  31. file, err := os.Open(filePath)
  32. if err != nil {
  33. log.Fatalf("Failed to open %s!\n", filePath)
  34. }
  35. computers := readInput(file)
  36. fmt.Println(computers)
  37. }