Added Dijkstra's shortest path problem #16228
Annotations
10 errors
|
Ruff (UP006):
searches/dijkstra.py#L21
searches/dijkstra.py:21:30: UP006 Use `dict` instead of `Dict` for type annotation
|
|
Ruff (UP006):
searches/dijkstra.py#L21
searches/dijkstra.py:21:12: UP006 Use `dict` instead of `Dict` for type annotation
|
|
Ruff (UP006):
searches/dijkstra.py#L21
searches/dijkstra.py:21:6: UP006 Use `tuple` instead of `Tuple` for type annotation
|
|
Ruff (UP006):
searches/dijkstra.py#L20
searches/dijkstra.py:20:31: UP006 Use `tuple` instead of `Tuple` for type annotation
|
|
Ruff (UP006):
searches/dijkstra.py#L20
searches/dijkstra.py:20:12: UP006 Use `dict` instead of `Dict` for type annotation
|
|
Ruff (UP035):
searches/dijkstra.py#L16
searches/dijkstra.py:16:1: UP035 `typing.Tuple` is deprecated, use `tuple` instead
|
|
Ruff (UP035):
searches/dijkstra.py#L16
searches/dijkstra.py:16:1: UP035 `typing.List` is deprecated, use `list` instead
|
|
Ruff (UP035):
searches/dijkstra.py#L16
searches/dijkstra.py:16:1: UP035 `typing.Dict` is deprecated, use `dict` instead
|
|
Ruff (UP035):
searches/dijkstra.py#L16
searches/dijkstra.py:16:1: UP035 Import from `collections.abc` instead: `Iterable`
|
|
Ruff (I001):
searches/dijkstra.py#L13
searches/dijkstra.py:13:1: I001 Import block is un-sorted or un-formatted
|