Skip to content

Instantly share code, notes, and snippets.

@thedineshj
Created August 10, 2018 15:38
Show Gist options
  • Save thedineshj/cff75fb4cbd71f5b96aca0814e1b0df4 to your computer and use it in GitHub Desktop.
Save thedineshj/cff75fb4cbd71f5b96aca0814e1b0df4 to your computer and use it in GitHub Desktop.
class SingleLinkedList {
constructor() {
this.head = null;
this.length = 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment