Skip to content

Instantly share code, notes, and snippets.

@Chryus
Last active August 29, 2015 13:57
Show Gist options
  • Save Chryus/9570266 to your computer and use it in GitHub Desktop.
Save Chryus/9570266 to your computer and use it in GitHub Desktop.
class LinkedList
attr_reader :root
def initialize(node)
@root = node
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment