This kata does not ask you to write a method.
Fixed it. Thank you.
Java. The age generation is wrong. In the random tests:
int dad = rand.nextInt(82)+18; int son = dad - rand.nextInt(22)+18; <-- this line should be int son = dad - (rand.nextInt(22) + 18);
What is the programming language?
Loading collection data...
This kata does not ask you to write a method.
Fixed it. Thank you.
Java. The age generation is wrong. In the random tests:
What is the programming language?