Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/careercup/ctci
/ equivalent
Method
equivalent
java/Chapter 8/Question8_10/Cell.java:11–13 ·
view source on GitHub ↗
(Cell<K, V> c)
Source
from the content-addressed store, hash-verified
9
}
10
11
public
boolean equivalent(Cell<K, V> c) {
12
return
equivalent(c.getKey());
13
}
14
15
public
boolean equivalent(K k) {
16
return
key.equals(k);
Callers
2
put
Method · 0.80
get
Method · 0.80
Calls
1
getKey
Method · 0.80
Tested by
no test coverage detected