This commit is contained in:
2025-08-08 22:33:51 -07:00
parent 186604e94f
commit b0f854fb63
+1 -1
View File
@@ -7,7 +7,7 @@ Position = namedtuple("Position", ["y", "x", "value"])
class Grid:
"""
A class wrapping a 2-d array arry of Position instances with some convience methods.
A class wrapping a 2-d array of Position instances with some convience methods.
"""
def __init__(self, data):
self.data = []