AVL TreeminOn this pageAvl.minFind the smallest element in the tree Usagemin()Returns: element The smallest item Examplefrom jellybeans.structures import Avltree = Avl(lambda x,y: len(x) >= len(y))tree.insert("abcd")tree.insert("a")tree.insert("aaaaaaa")tree.insert("aac")print(tree.min()) # a