Skip to content

Instantly share code, notes, and snippets.

@nikasulo
Last active September 3, 2019 16:52
Show Gist options
  • Save nikasulo/4f2510ac4fa00850aeb94d7c41996d0b to your computer and use it in GitHub Desktop.
Save nikasulo/4f2510ac4fa00850aeb94d7c41996d0b to your computer and use it in GitHub Desktop.
pushFront method for deque
def pushFront(number)
@first = Node.new(number, @first, nil)
@last = @first if @last and @last.value.nil?
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment