Skip to content

Commit 834cc8a

Browse files
authored
Update 6.py
1 parent 4866304 commit 834cc8a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

5/6.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
INF = 999999999 # 무한의 비용 선언
22

33
# 2차원 리스트를 이용해 인접 행렬 표현
4-
array = [
4+
graph = [
55
[0, 7, 5],
66
[7, 0, INF],
77
[5, INF, 0]
88
]
99

10-
print(array)
10+
print(graph)

0 commit comments

Comments
 (0)