MK5DPZTPQXOVN7H2UJKBP36T7OBRZ3ZT4YXLALSX7Y3MHQSWDMWQC
FVA27TNS75OQUHWRPADSLQWYSKUDDNKZLABYFYDJ652C3HNAEFTAC
const max = 104743 // biggest test inputtype sieveMap map[int]bool
const max = 104743 // biggest test input
type sieveMap map[int]bool
var mysieve = genPrimes(max)
const MAX = 104743 // biggest test input
func genPrimes(n int) sieveMap { sieve := make(sieveMap)
func genPrimes(n int) sieveMap {
sieve := make(sieveMap)
func genPrimes(n int) []bool { sieve := make([]bool, n+1)
func genPrimes(n int) []bool {
sieve := make([]bool, n+1)
// This could be global, but I want to measure the sieve generation time too var mysieve = genPrimes(MAX)
// This could be global, but I want to measure the sieve generation time too
var mysieve = genPrimes(MAX)