Skip to content

Commit 1a25ad6

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent de2c080 commit 1a25ad6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data_structures/binary_tree/diff_views_of_binary_tree.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ def binary_tree_bottom_side_view(root: TreeNode) -> list[int]:
173173
>>> binary_tree_bottom_side_view(None)
174174
[]
175175
"""
176-
176+
177177
def breadth_first_search(root: TreeNode, bottom_view: list[int]) -> None:
178178
"""
179179
A breadth first search traversal with defaultdict ds to append

0 commit comments

Comments
 (0)