Skip to content

Instantly share code, notes, and snippets.

View ltenzil's full-sized avatar

L Tenzil ltenzil

  • Chennai
View GitHub Profile
@epv44
epv44 / LinkedList.rb
Created September 8, 2016 02:32
A linked list in Ruby, includes reverse and print
class Node
attr_accessor :node, :next
def initialize(node)
@node = node
end
end
####
# add - inserts the specified element at the specified position, returns true on success