From e8e43b0919e876d2d50006a0d4bf31ae7a03d6dc Mon Sep 17 00:00:00 2001 From: novikovsd Date: Mon, 25 May 2026 09:48:17 +0000 Subject: [PATCH] finish2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit исправлена ошибка в классе maze из-за которой код не запускался --- novikovsd/maze.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/novikovsd/maze.py b/novikovsd/maze.py index cb9c6dd..fd23ea5 100644 --- a/novikovsd/maze.py +++ b/novikovsd/maze.py @@ -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]] = []