Skip to content

Instantly share code, notes, and snippets.

@GAierken
Created August 14, 2020 01:53
Show Gist options
  • Save GAierken/cb5a9485863a1cc7f7415dfbcd38e62d to your computer and use it in GitHub Desktop.
Save GAierken/cb5a9485863a1cc7f7415dfbcd38e62d to your computer and use it in GitHub Desktop.
class Node {
constructor(value){
this.value = value
this.next = null
}
}
class Stack {
constructor(){
this.first = null
this.last = null
this.size = 0
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment