The exercise restriction says, "Do not make the game too easy. Only adjust the difficulty if the guess is above 10."
* guess < 0 doesn't check for definitive positivity * n := rand.Intn(guess + 1) may pick 0, a non positive integer * remove: redundant parentheses from the loop in 06-dynamic-difficulty