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

File partition.js

chapter02/2.4 - Partition/partition.js:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1var LinkedList = function(value) {
2 this.value = value;
3 this.next = null;
4};

Callers

nothing calls this directly

Calls 2

printListFunction · 0.85
partitionFunction · 0.70

Tested by

no test coverage detected