Skip to content

Commit 4248975

Browse files
authored
Update KthSmallestBST.py
1 parent f946adc commit 4248975

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/chapter06trees/KthSmallestBST.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def preOrderTraversal(root):
9090
def kthSmallestInBST(root, k):
9191
global count
9292
if(not root):
93-
return None;
93+
return None
9494
left = kthSmallestInBST(root.left, k)
9595
if(left):
9696
return left

0 commit comments

Comments
 (0)