[row for row in board if is_incomplete(row)]
A nitpick, but would inline the condition like this:
[row for row in board if 0 in row]
I get that this is maybe for clarity + aligning with clojure version thought :)
[row for row in board if is_incomplete(row)]
A nitpick, but would inline the condition like this:
[row for row in board if 0 in row]
I get that this is maybe for clarity + aligning with clojure version thought :)
os
Liten typo