Skip to content

Instantly share code, notes, and snippets.

@nikasulo
Created August 28, 2019 20:04
Show Gist options
  • Save nikasulo/ce2452d45cdd196f84eb2055da9ebe6b to your computer and use it in GitHub Desktop.
Save nikasulo/ce2452d45cdd196f84eb2055da9ebe6b to your computer and use it in GitHub Desktop.
Balancing brackets tutorial
def popFront
raise "Stack is empty" if is_empty?
@first = @first.next_node
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment