fixes 3 pairs подряд, etc

This commit is contained in:
2025-09-12 20:07:04 +03:00
parent 6920d24a98
commit ed65e5b483
8 changed files with 239 additions and 78 deletions

View File

@@ -1,3 +1,4 @@
# Copyright Stanislav Mironov
class Coord:
@@ -13,6 +14,10 @@ class Coord:
return Coord(self.row if row is None else row,
self.col if col is None else col)
def copy(self) -> "Coord":
return Coord(self.row,
self.col)
def cell(self, reader: "ExcelSheetReader") -> "TranschendentnostCell":
return reader.cell(self.row, self.col)