Skip to content

Instantly share code, notes, and snippets.

@RobotGyal
Created March 5, 2021 18:55
Show Gist options
  • Save RobotGyal/dfb9c9970e978b43f09e6d93cced430b to your computer and use it in GitHub Desktop.
Save RobotGyal/dfb9c9970e978b43f09e6d93cced430b to your computer and use it in GitHub Desktop.
Binary Tree Node
class Node:
def __init__(self, data):
self.left = None
self.right = None
self.data = data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment