This commit is contained in:
Steven Polley 2020-11-15 03:02:00 +00:00
parent 33a838ff69
commit 06d7ff4586
1 changed files with 2 additions and 2 deletions

View File

@ -12,8 +12,8 @@ import (
const ( const (
randomMin = 0 randomMin = 0
randomMax = 999999999999999999 //int64 max value is 9223372036854775807. We use one digit less than that with all 9's in order to not give bias to any digits. randomMax = 999999999999999999 // int64 max value is 9223372036854775807. We use one digit less than that with all 9's in order to not give bias to any digits.
numSamples = 100000000 numSamples = 100000000 // A nice rounded human number
) )
func main() { func main() {