Skip to content

feat(backtracking): add m-coloring algorithm with type hints and doctests #14839

feat(backtracking): add m-coloring algorithm with type hints and doctests

feat(backtracking): add m-coloring algorithm with type hints and doctests #14839

Triggered via pull request October 6, 2025 18:01
Status Failure
Total duration 11s
Artifacts

ruff.yml

on: pull_request
Fit to window
Zoom out
Zoom in

Annotations

10 errors
ruff
Process completed with exit code 1.
Ruff (UP006): backtracking/m_coloring_problem.py#L38
backtracking/m_coloring_problem.py:38:32: UP006 Use `list` instead of `List` for type annotation
Ruff (UP006): backtracking/m_coloring_problem.py#L38
backtracking/m_coloring_problem.py:38:27: UP006 Use `list` instead of `List` for type annotation
Ruff (UP006): backtracking/m_coloring_problem.py#L18
backtracking/m_coloring_problem.py:18:66: UP006 Use `list` instead of `List` for type annotation
Ruff (UP006): backtracking/m_coloring_problem.py#L18
backtracking/m_coloring_problem.py:18:61: UP006 Use `list` instead of `List` for type annotation
Ruff (UP006): backtracking/m_coloring_problem.py#L18
backtracking/m_coloring_problem.py:18:27: UP006 Use `list` instead of `List` for type annotation
Ruff (UP006): backtracking/m_coloring_problem.py#L5
backtracking/m_coloring_problem.py:5:65: UP006 Use `list` instead of `List` for type annotation
Ruff (UP006): backtracking/m_coloring_problem.py#L5
backtracking/m_coloring_problem.py:5:40: UP006 Use `list` instead of `List` for type annotation
Ruff (UP006): backtracking/m_coloring_problem.py#L5
backtracking/m_coloring_problem.py:5:35: UP006 Use `list` instead of `List` for type annotation
Ruff (UP035): backtracking/m_coloring_problem.py#L1
backtracking/m_coloring_problem.py:1:1: UP035 `typing.List` is deprecated, use `list` instead