Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/careercup/ctci
/ getLetter
Method
getLetter
java/Chapter 18/Question18_13/Rectangle.java:30–32 ·
view source on GitHub ↗
(int i, int j)
Source
from the content-addressed store, hash-verified
28
/* Return the letter present at the specified location in the array.
29
*/
30
public
char getLetter (
int
i,
int
j) {
31
return
matrix[i][j];
32
}
33
34
public
String getColumn(
int
i) {
35
char[] column =
new
char[height];
Callers
1
getColumn
Method · 0.95
Calls
no outgoing calls
Tested by
no test coverage detected