Skip to content

Instantly share code, notes, and snippets.

@nikasulo
Last active September 4, 2019 22:08
Show Gist options
  • Save nikasulo/4778288492845cd3eefcf686248a5ec8 to your computer and use it in GitHub Desktop.
Save nikasulo/4778288492845cd3eefcf686248a5ec8 to your computer and use it in GitHub Desktop.
class Deque
def initialize
@first = Node.new(nil)
@last = @first
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment