Skip to content

Instantly share code, notes, and snippets.

@nikasulo
Last active September 3, 2019 16:55
Show Gist options
  • Save nikasulo/6f2ce858339ab355c6fb3d3529ba9a59 to your computer and use it in GitHub Desktop.
Save nikasulo/6f2ce858339ab355c6fb3d3529ba9a59 to your computer and use it in GitHub Desktop.
popBack method for Ruby deque
def popBack
@last = @last.prev_node and return unless @first == @last
@first = Node.new(nil)
@last = @first
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment