Added Dijkstra's shortest path problem #16227
Annotations
10 errors
|
Ruff (E501):
searches/dijkstra.py#L18
searches/dijkstra.py:18:89: E501 Line too long (116 > 88)
|
|
Ruff (UP006):
searches/dijkstra.py#L18
searches/dijkstra.py:18:83: UP006 Use `dict` instead of `Dict` for type annotation
|
|
Ruff (UP006):
searches/dijkstra.py#L18
searches/dijkstra.py:18:77: UP006 Use `tuple` instead of `Tuple` for type annotation
|
|
Ruff (UP006):
searches/dijkstra.py#L18
searches/dijkstra.py:18:40: UP006 Use `tuple` instead of `Tuple` for type annotation
|
|
Ruff (UP006):
searches/dijkstra.py#L18
searches/dijkstra.py:18:21: UP006 Use `dict` instead of `Dict` for type annotation
|
|
Ruff (UP035):
searches/dijkstra.py#L15
searches/dijkstra.py:15:1: UP035 `typing.Tuple` is deprecated, use `tuple` instead
|
|
Ruff (UP035):
searches/dijkstra.py#L15
searches/dijkstra.py:15:1: UP035 `typing.List` is deprecated, use `list` instead
|
|
Ruff (UP035):
searches/dijkstra.py#L15
searches/dijkstra.py:15:1: UP035 `typing.Dict` is deprecated, use `dict` instead
|
|
Ruff (UP035):
searches/dijkstra.py#L15
searches/dijkstra.py:15:1: UP035 Import from `collections.abc` instead: `Iterable`
|
|
Ruff (I001):
searches/dijkstra.py#L12
searches/dijkstra.py:12:1: I001 Import block is un-sorted or un-formatted
|