Skip to content

Commit dba51f7

Browse files
committed
최소비용 구하기 2 풀이 재업로드
1 parent 078be46 commit dba51f7

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

BAEKJOON/3Gold/최소비용 구하기 2.py

-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ def dijkstra(N, graph, start):
2121
dist[_node] = next_cost
2222
visit[_node] = visit[node] + [_node]
2323
heapq.heappush(heap, (next_cost, _node))
24-
2524
return dist, visit
2625

2726
if __name__ == "__main__":

0 commit comments

Comments
 (0)