Skip to content

Commit 1666276

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent fda98c8 commit 1666276

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

backtracking/crossword_puzzle_solver.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,11 @@ def place_word(
5252

5353

5454
def remove_word(
55-
puzzle: list[list[str]], word: str, row: int, col: int, vertical: bool,
55+
puzzle: list[list[str]],
56+
word: str,
57+
row: int,
58+
col: int,
59+
vertical: bool,
5660
snapshot: list[list[str]],
5761
) -> None:
5862
"""

0 commit comments

Comments
 (0)