Skip to content

Commit d599d77

Browse files
authored
Update network-delay-time.py
1 parent f76642d commit d599d77

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Python/network-delay-time.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
# - The length of times will be in the range [1, 6000].
1818
# - All edges times[i] = (u, v, w) will have 1 <= u, v <= N and 1 <= w <= 100.
1919

20+
import collections
2021
import heapq
2122

22-
2323
# Dijkstra's algorithm
2424
class Solution(object):
2525
def networkDelayTime(self, times, N, K):

0 commit comments

Comments
 (0)