From d70dbf90a98962bf5ad1cd4f1f6e9beab9eab8fc Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 22 Dec 2022 08:46:03 +0900 Subject: [PATCH] Add add-piedroconti --- algorithms/Python/graphs/dijkstra.py | 44 ++++++++++++++-------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/algorithms/Python/graphs/dijkstra.py b/algorithms/Python/graphs/dijkstra.py index 9a096e55..a4447b9f 100644 --- a/algorithms/Python/graphs/dijkstra.py +++ b/algorithms/Python/graphs/dijkstra.py @@ -29,29 +29,29 @@ while PQ: """ SAMPLE INPUT AND OUTPUT - ___________________________ - Input: - __________ - - 5 6 - - 0 - - 4 0 1 - 0 1 2 - 0 2 3 - 1 2 4 - 1 3 5 - 2 3 6 + ___________________________ + Input: + __________ + + 5 6 + + 0 + + 4 0 1 + 0 1 2 + 0 2 3 + 1 2 4 + 1 3 5 + 2 3 6 - Output: - ___________ - Distances from start node 0 - 0 - 2 - 3 - 7 - INF + Output: + ___________ + Distances from start node 0 + 0 + 2 + 3 + 7 + INF """ for i in dist: