class LinkedList def initialize() @head = nil @tail = nil @totalNodes = 0 end def atIndex (index) tmp = @head k = 0 while tmp and k