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

File hashTable.js

chapter07/7.12 - Hash Table/hashTable.js:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1var LinkedList = function(key, value) {
2 this.keyValPair = [key, value];
3 this.next = null;
4};

Callers

nothing calls this directly

Calls 2

getHashFunction · 0.85
insertMethod · 0.80

Tested by

no test coverage detected