Fininsh tidying

This commit is contained in:
__
2024-04-29 01:19:47 +02:00
parent 614e5393e3
commit 40e719aa11
4 changed files with 62 additions and 34 deletions

View File

@@ -1,15 +1,5 @@
from numpy import Infinity
CELL = 0
WALL = 1
START = 2
END = 3
ROWS = 10
COLS = 10
from consts import *
class Node:
def __init__(self, x, y) -> None: