Skip to content

Instantly share code, notes, and snippets.

@kalda341
Created February 17, 2015 08:34
Show Gist options
  • Save kalda341/0dca5b7b65a23bf51862 to your computer and use it in GitHub Desktop.
Save kalda341/0dca5b7b65a23bf51862 to your computer and use it in GitHub Desktop.
def get_number_of_leaves(self):
return self.left.get_number_of_leaves() + self.right.get_number_of_leaves()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment