mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-05 01:09:40 +08:00
Create codespell.yml (#1698)
* fixup! Format Python code with psf/black push * Create codespell.yml * fixup! Format Python code with psf/black push
This commit is contained in:
@ -35,7 +35,7 @@ def search(grid, init, goal, cost, heuristic):
|
||||
|
||||
closed = [
|
||||
[0 for col in range(len(grid[0]))] for row in range(len(grid))
|
||||
] # the referrence grid
|
||||
] # the reference grid
|
||||
closed[init[0]][init[1]] = 1
|
||||
action = [
|
||||
[0 for col in range(len(grid[0]))] for row in range(len(grid))
|
||||
|
Reference in New Issue
Block a user