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

Class

chapter02/util/LinkedListX.js:16–16  ·  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;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected