We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 078be46 commit dba51f7Copy full SHA for dba51f7
BAEKJOON/3Gold/최소비용 구하기 2.py
@@ -21,7 +21,6 @@ def dijkstra(N, graph, start):
21
dist[_node] = next_cost
22
visit[_node] = visit[node] + [_node]
23
heapq.heappush(heap, (next_cost, _node))
24
-
25
return dist, visit
26
27
if __name__ == "__main__":
0 commit comments