MCPcopy Index your code
hub / github.com/careercup/ctci / randomInt

Method randomInt

java/Chapter 18/Question18_6/QuestionC.java:73–75  ·  view source on GitHub ↗
(int n)

Source from the content-addressed store, hash-verified

71 }
72
73 public static int randomInt(int n) {
74 return (int) (Math.random() * n);
75 }
76
77 public static int randomIntInRange(int min, int max) {
78 return randomInt(max + 1 - min) + min;

Callers 1

randomIntInRangeMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected