Skip to content

Commit 4e36fea

Browse files
authored
Update MinMaxinBinaryTree.py
1 parent c6cf2ce commit 4e36fea

File tree

1 file changed

+0
-35
lines changed

1 file changed

+0
-35
lines changed

MinMaxinBinaryTree.py

-35
Original file line numberDiff line numberDiff line change
@@ -31,41 +31,6 @@ def getMinAndMax(root,p) :
3131
getMinAndMax(root.left, p)
3232
getMinAndMax(root.right, p)
3333
return p
34-
35-
36-
37-
38-
39-
40-
41-
42-
43-
44-
45-
46-
47-
48-
49-
50-
51-
52-
53-
54-
55-
56-
57-
58-
59-
60-
61-
62-
63-
64-
65-
66-
67-
68-
6934
#Taking level-order input using fast I/O method
7035
def takeInput():
7136
levelOrder = list(map(int, stdin.readline().strip().split(" ")))

0 commit comments

Comments
 (0)