Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/qiyuangong/leetcode
/ idx
Method
idx
java/706_Design_HashMap.java:30–30 ·
view source on GitHub ↗
(int key)
Source
from the content-addressed store, hash-verified
28
}
29
30
int
idx(
int
key) {
return
Integer.hashCode(key) % nodes.length;}
31
32
ListNode find(ListNode bucket,
int
key) {
33
ListNode node = bucket, prev = null;
Callers
3
put
Method · 0.95
get
Method · 0.95
remove
Method · 0.95
Calls
1
hashCode
Method · 0.80
Tested by
no test coverage detected