mirror of
https://github.com/donnemartin/interactive-coding-challenges.git
synced 2024-03-22 13:11:13 +08:00
Simplified check to determine if there are items in the queue.
This commit is contained in:
parent
370ceaf414
commit
25eaf0224a
|
@ -34,8 +34,6 @@
|
|||
"## Constraints\n",
|
||||
"\n",
|
||||
"* Can we assume we already have a Node class with an insert method?\n",
|
||||
" * Yes\n",
|
||||
"* Can we use collections.deque for the queue?\n",
|
||||
" * Yes"
|
||||
]
|
||||
},
|
||||
|
@ -98,7 +96,7 @@
|
|||
"def bfs(root, visit_func):\n",
|
||||
" queue = deque()\n",
|
||||
" queue.append(root)\n",
|
||||
" while len(queue) > 0:\n",
|
||||
" while queue:\n",
|
||||
" node = queue.popleft()\n",
|
||||
" visit_func(node.data)\n",
|
||||
" if node.left is not None:\n",
|
||||
|
|
Loading…
Reference in New Issue
Block a user