We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 824946e commit 40ca7b7Copy full SHA for 40ca7b7
1 file changed
tests/maze/test_maze.py
@@ -72,7 +72,7 @@ def heuristic_cost_estimate(self, n1, n2):
72
return math.hypot(x2 - x1, y2 - y1)
73
74
def distance_between(self, n1, n2):
75
- """this method always returns 1, as two 'neighbors' are always adajcent"""
+ """this method always returns 1, as two 'neighbors' are always adjacent"""
76
return 1
77
78
def neighbors(self, node):
0 commit comments