MCPcopy 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

putMethod · 0.95
getMethod · 0.95
removeMethod · 0.95

Calls 1

hashCodeMethod · 0.80

Tested by

no test coverage detected