Skip to content

Commit bcd402b

Browse files
authored
Update 2.py
1 parent 9a26452 commit bcd402b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

9/2.py

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
adj = [[] for i in range (n + 1)]
1111
# 최단 거리 테이블을 모두 무한(10억)으로 초기화합니다.
1212
distance = [1e9] * (n + 1)
13+
1314
# 모든 간선 정보를 입력 받습니다.
1415
for _ in range(m):
1516
a, b, c = map(int, input().split())

0 commit comments

Comments
 (0)