2 Matching Annotations
  1. Jan 2026
    1. [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 :)