Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
1
var
LinkedList =
function
(key, value) {
2
this.keyValPair = [key, value];
3
this.next = null;
4
};
Callers
nothing calls this directly
Calls
2
getHash
Function · 0.85
insert
Method · 0.80
Tested by
no test coverage detected