MCPcopy Create free account
hub / github.com/careercup/CtCI-6th-Edition-JavaScript / Node

Class Node

chapter02/util/LinkedListX.js:16–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14// NOTE: no type-safety
15
16class Node {
17 constructor(value) {
18 this.value = value
19 this.next = null;
20 }
21 }
22
23 class LinkedList {
24 constructor() {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected