Update bt_inorder_iterator.py

This commit is contained in:
bt3gl 2023-08-08 19:27:15 -07:00 committed by GitHub
parent bc8ff138e3
commit b9318bf6ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,7 +9,7 @@ class Node:
self.right = right
class BST_Iterator:
class InorderIterator:
def __init__(self, root):
self.stack = []