We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13f59f7 commit 5e0f104Copy full SHA for 5e0f104
1 file changed
algorithms/graphs/reconstruct_itinerary/__init__.py
@@ -32,7 +32,7 @@ def find_itinerary(tickets: List[List[str]]) -> List[str]:
32
# for the last airport at the top of the stack. If we reach to an airport from where
33
# we can't go further then add it to the result. This airport should be the last to go
34
# since we can't go anywhere from here. That's why we return the reverse of the result
35
- # After this backtrack to the top airport in the stack and continue to traaverse it's children
+ # After this backtrack to the top airport in the stack and continue to traverse its children
36
37
while len(stack) > 0:
38
elem = stack[-1]
0 commit comments