Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
Indexed
MCP
copy
Index your code
hub
/
github.com/careercup/ctci
/ randomIntInRange
Method
randomIntInRange
java/Chapter 18/Question18_6/QuestionC.java:77–79 ·
view source on GitHub ↗
(int min, int max)
Source
from the content-addressed store, hash-verified
75
}
76
77
public
static
int
randomIntInRange(
int
min,
int
max) {
78
return
randomInt(max + 1 - min) + min;
79
}
80
81
public
static
int
partition(
int
[] array,
int
left,
int
right,
int
pivot) {
82
while
(true) {
Callers
1
rank
Method · 0.95
Calls
1
randomInt
Method · 0.95
Tested by
no test coverage detected