Skip to content

Commit bc801a8

Browse files
committed
remove print
1 parent 5cb3d98 commit bc801a8

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

maximum-depth-of-binary-tree/daiyongg-kim.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ def maxDepth(self, root: Optional[TreeNode]) -> int:
44
if not root:
55
return 0
66
queue = deque([root])
7-
print(queue)
87
depth = 0
98

109
while queue:

0 commit comments

Comments
 (0)