Last active
September 15, 2015 04:00
-
-
Save kartikkukreja/8b0169c2de70369fa982 to your computer and use it in GitHub Desktop.
BST Node
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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