Add a TODO

This commit is contained in:
Eryn Wells 2017-10-08 08:06:34 -07:00
parent b5ac48bc10
commit 5696c087d8

View file

@ -57,6 +57,8 @@ class Sudoku:
dim = self.dimension
return (self.square(x, y) for y in range(dim) for x in range(dim))
# TODO: Break the above into helper methods that produce a single thing given an index.
@property
def solved(self):
expected = set(range(self.size))