Skip to content

Commit

Permalink
Clarify output in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
fikisipi committed May 9, 2023
1 parent 20496db commit a988d31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ cities = elkai.Coordinates2D({
'city3': (5, 0)
})

print(cities.solve_tsp())
print(cities.solve_tsp()) # Output: ['city1', 'city2', 'city3', 'city1']
```

```python
Expand All @@ -42,7 +42,7 @@ cities = elkai.DistanceMatrix([
[0, 0, 0]
])

print(cities.solve_tsp())
print(cities.solve_tsp()) # Output: [0, 2, 1, 0]
```

> **Note**
Expand Down

0 comments on commit a988d31

Please sign in to comment.