Skip to content

Instantly share code, notes, and snippets.

View BenjaminAdimachukwu's full-sized avatar

Adimachukwu Benjamin kelechi BenjaminAdimachukwu

View GitHub Profile
// Construct Single Node
class Node {
constructor(data, next = null) {
this.data = data;
this.next = next;
}
}
// Create/Get/Remove Nodes From Linked List
class LinkedList {