Beispiel #1
0
def main():
    # Read each test case

    bst = BST()
    for ele in [2, 7, 4, 8, 5]:
        bst.add(ele)
    print(bst.count_in_range(3, 5))