Skip to content

Instantly share code, notes, and snippets.

View RomanTurner's full-sized avatar
🤫

Roman RomanTurner

🤫
View GitHub Profile
@RomanTurner
RomanTurner / Stack-LL.js
Last active April 7, 2021 22:18
Starting a Stack using Linked List
class Stack {
constructor(){
this.length = 0;
this.head = null;
}
@RomanTurner
RomanTurner / Node.js
Created April 7, 2021 22:12
Node for LL
//Node
class Node {
constructor(el){
this.element = el;
this.next = null;
}
}