From 33a838ff69a86857975fe8643af98a1b6539006d Mon Sep 17 00:00:00 2001 From: Steven Polley Date: Sun, 15 Nov 2020 03:00:39 +0000 Subject: [PATCH] Increase range of random numbers (I don't think has impact on results, but why not) --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 7148f7c..26eade9 100644 --- a/main.go +++ b/main.go @@ -12,7 +12,7 @@ import ( const ( randomMin = 0 - randomMax = 9999999999999999 + 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 )