(path)
| 22 | |
| 23 | |
| 24 | def read_input(path): |
| 25 | cities = [] |
| 26 | with open(path, "r") as input_file: |
| 27 | for line in input_file: |
| 28 | x, y = line.split(" ") |
| 29 | city = City(float(x), float(y)) |
| 30 | cities.append(city) |
| 31 | return cities |
no outgoing calls
no test coverage detected