Skip to content

Commit 4ff4cc0

Browse files
authored
Update 8.py
1 parent b49fb3f commit 4ff4cc0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

10/8.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
indegree = [0] * (v + 1)
88
# 각 노드에 연결된 간선 정보를 담기 위한 연결 리스트(그래프) 초기화
99
graph = [[] for i in range(v + 1)]
10-
# 각 건물이 지어지는 시간을 0으로 초기화
10+
# 각 강의 시간을 0으로 초기화
1111
time = [0] * (v + 1)
1212

1313
# 방향 그래프의 모든 간선 정보를 입력 받기

0 commit comments

Comments
 (0)