Skip to content

Commit

Permalink
Format list of rows.
Browse files Browse the repository at this point in the history
  • Loading branch information
jwg4 committed Jan 31, 2025
1 parent 20b885e commit 5683f8e
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions tests/problems.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,18 @@ def bruteforce_problem3():

def trailing_zero_row_problem():
tc = (
(1, 1, 0,), (1, 0, 1,), (1, 0, 1,), (1, 1, 0,), (1, 1, 0,), (0, 0, 0,),
(0, 0, 0,), (0, 0, 1,), (1, 1, 0,), (1, 0, 1,), (0, 1, 0,), (1, 0, 0,),
(1, 1, 0),
(1, 0, 1),
(1, 0, 1),
(1, 1, 0),
(1, 1, 0),
(0, 0, 0),
(0, 0, 0),
(0, 0, 1),
(1, 1, 0),
(1, 0, 1),
(0, 1, 0),
(1, 0, 0),
)
return dict(
data=np.array(tc, dtype=DTYPE_FOR_ARRAY),
Expand Down

0 comments on commit 5683f8e

Please sign in to comment.