Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Level4/Lesson5 Bug Report: Why random output should even be checked if it's dependent on the user seed?

package main
import (
"fmt"
"math/rand"
)

func main() {
target := rand.Intn(100) + 1
fmt.Println(target)
}

I get the "Your code's output does not match the expected outcome for this exercise." while my answer is correct. I appreciate if you'd fix the issue.
by

0 Answers

No Answer posted yet.

Login / Signup to Answer the Question.