diff options
author | Thomas Voss <thomasvoss@live.com> | 2021-12-04 14:51:56 +0100 |
---|---|---|
committer | Thomas Voss <thomasvoss@live.com> | 2021-12-04 14:51:56 +0100 |
commit | 0f4b26a35cc3f3d805272e9f2e542afea42b4752 (patch) | |
tree | 4540177f085d2d1dcf9cf9b42419dc32c8ea75ea /2021 | |
parent | 7400db62502d6bf5bc330859973e22c4c602604c (diff) |
Remove useless code
Diffstat (limited to '2021')
-rw-r--r-- | 2021/04/puzzles.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/2021/04/puzzles.py b/2021/04/puzzles.py index 858450f..20036e0 100644 --- a/2021/04/puzzles.py +++ b/2021/04/puzzles.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 board = list[list[int]] -last: board = [[]] * 5 +last: board = [] def bingo(board: board) -> bool: |