create word search path retrieval with comprehensive doctests #17580
Annotations
6 errors
|
ruff
Process completed with exit code 1.
|
|
ruff (SIM113):
hashes/hamming_code.py#L225
hashes/hamming_code.py:225:9: SIM113 Use `enumerate()` for index variable `qtd_bp` in `for` loop
|
|
ruff (SIM113):
hashes/hamming_code.py#L136
hashes/hamming_code.py:136:9: SIM113 Use `enumerate()` for index variable `qtd_bp` in `for` loop
|
|
ruff (E501):
backtracking/word_search_path.py#L155
backtracking/word_search_path.py:155:89: E501 Line too long (111 > 88)
|
|
ruff (RUF005):
backtracking/word_search_path.py#L68
backtracking/word_search_path.py:68:16: RUF005 Consider `[*current_path, (row, column)]` instead of concatenation
help: Replace with `[*current_path, (row, column)]`
|
|
ruff (E501):
backtracking/word_search_path.py#L29
backtracking/word_search_path.py:29:89: E501 Line too long (92 > 88)
|