Skip to content
This repository was archived by the owner on Nov 4, 2024. It is now read-only.

Commit ba1a875

Browse files
Update bt_bfs.py
1 parent f1a8659 commit ba1a875

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

trees/bt_bfs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# author: bt3gl
44

55

6-
def bfs_iterative(root) -> list:
6+
def bfs(root) -> list:
77

88
result = []
99
queue = collections.deque([root])

0 commit comments

Comments
 (0)