We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75eda4b commit c25ba87Copy full SHA for c25ba87
09-problems/lc_787_cheapest_flights_within_k_stops.py
@@ -38,7 +38,7 @@
38
39
class Solution_BFS:
40
'''
41
- Time Complexity: O(|V|^2 + |V||E|)
+ Time Complexity: O(|V|^2 + |V||E|) ?
42
T = T(Build Adjacency List) + T(Kind Of BFS algo)
43
= O(|E|) + |V| * O(|V| + |E|)
44
0 commit comments