Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/careercup/ctci
/ setToAverage
Method
setToAverage
java/Chapter 11/Question11_6/Coordinate.java:31–34 ·
view source on GitHub ↗
(Coordinate min, Coordinate max)
Source
from the content-addressed store, hash-verified
29
}
30
31
public
void
setToAverage(Coordinate min, Coordinate max) {
32
row = (min.row + max.row) / 2;
33
column = (min.column + max.column) / 2;
34
}
35
}
Callers
1
findElement
Method · 0.95
Calls
no outgoing calls
Tested by
no test coverage detected