Skip to content

Instantly share code, notes, and snippets.

@nikasulo
Last active September 4, 2019 22:12
Show Gist options
  • Save nikasulo/ca690c182160d603398bef32aefef874 to your computer and use it in GitHub Desktop.
Save nikasulo/ca690c182160d603398bef32aefef874 to your computer and use it in GitHub Desktop.
popFront method for Ruby Deque
def popFront
if @last == @first
@first = Node.new(nil)
@last = @first
return
end
@first = @first.next_node
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment