Skip to content

Instantly share code, notes, and snippets.

@kartikkukreja
Last active September 15, 2015 04:00
Show Gist options
  • Save kartikkukreja/8b0169c2de70369fa982 to your computer and use it in GitHub Desktop.
Save kartikkukreja/8b0169c2de70369fa982 to your computer and use it in GitHub Desktop.
BST Node
class BST:
def __init__(self, data, left, right):
self.data = data
self.left = left
self.right = right
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment