7 lines
221 B
Python
7 lines
221 B
Python
from typing import Optional
|
|
from task2.mazeObjects.cell import Cell
|
|
|
|
class Path:
|
|
def __init__(self, array:Optional[list[Cell]], visited_cells:int):
|
|
self.array = array
|
|
self.visited_cells = visited_cells |