[2] #344

Merged
kit8nino merged 14 commits from novikovsd/2026-rff_mp:lab2 into develop 2026-05-30 12:05:52 +00:00
Showing only changes of commit e8e43b0919 - Show all commits

View File

@ -1,4 +1,3 @@
import sys
import time
import csv
from collections import deque
@ -24,7 +23,7 @@ class Cell:
return f"Cell({self.x},{self.y})"
class Maze:
def __init__(self, width: int, height: int):
def __init__(self, width: int, height: int):
self.width = width
self.height = height
self.cells: List[List[Cell]] = []