Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 274 Bytes

README.md

File metadata and controls

21 lines (14 loc) · 274 Bytes

Linked list

const linkedList = new SinglyLinkedList<number>()

linkedList.addToEnd(1).addToEnd(7).addToEnd(2)

linkedList.remove(
  linkedList.find(7)
)

Stack

const stack = new Stack()

stack.push(1).push(2).push(5)

stack.pop()