Skip to content

Commit 5e0f104

Browse files
docs(algorithms, graphs): fix typo
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent 13f59f7 commit 5e0f104

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

algorithms/graphs/reconstruct_itinerary/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def find_itinerary(tickets: List[List[str]]) -> List[str]:
3232
# for the last airport at the top of the stack. If we reach to an airport from where
3333
# we can't go further then add it to the result. This airport should be the last to go
3434
# 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
35+
# After this backtrack to the top airport in the stack and continue to traverse its children
3636

3737
while len(stack) > 0:
3838
elem = stack[-1]

0 commit comments

Comments
 (0)