Skip to content

Commit bbf0199

Browse files
committed
1 parent bea9809 commit bbf0199

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data_structures/binary_tree/kth_smallest_value_in_a_binary_search_tree.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ def kthSmallest(root: Node, k: int) -> int:
4040
tree.left.right = Node(4)
4141
tree.left.left.left = Node(1)
4242
k = 2
43-
print(f"The {k}th Smallest Value in the BST is:", kthSmallest(tree, k))
43+
print("The " + str(k) + "-th Smallest Value in the BST is: " + str(kthSmallest(tree, k)))

0 commit comments

Comments
 (0)