Skip to content

Instantly share code, notes, and snippets.

@Daiver
Created April 15, 2013 18:56
Show Gist options
  • Save Daiver/5390420 to your computer and use it in GitHub Desktop.
Save Daiver/5390420 to your computer and use it in GitHub Desktop.
class Tree:
def __init___(self, value):
self.left = .....
self.right = .....
self.value = value
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment