We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
class Solution(object): def connect(self, root): if not root: return queue = [root] while queue: curr = queue.pop(0) if curr.left and curr.right: curr.left.next = curr.right if curr.next: curr.right.next = curr.next.left queue.append(curr.left) queue.append(curr.right)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
116 | Populating Next Right Pointers in Each Node
BFS Solution
The text was updated successfully, but these errors were encountered: