Skip to content

Commit 0a2d746

Browse files
authored
Update Course Schedule II - Leetcode 210.py
1 parent 9f071de commit 0a2d746

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Course Schedule II - Leetcode 210/Course Schedule II - Leetcode 210.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ def findOrder(self, numCourses: int, prerequisites: List[List[int]]) -> List[int
77

88
UNVISITED, VISITING, VISITED = 0, 1, 2
99
states = [UNVISITED] * numCourses
10-
1110

1211
def dfs(i):
1312
if states[i] == VISITING:

0 commit comments

Comments
 (0)