mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
490 B
28 lines
490 B
package main |
|
|
|
import ( |
|
"strconv" |
|
|
|
"lib" |
|
"lib/is" |
|
) |
|
|
|
func main() { |
|
// adds random numbers |
|
table := lib.MultRandIntBetween(1, 10000) |
|
|
|
// fill with all prime numbers between 0 and 100 |
|
for i := 0; i < 100; i++ { |
|
if is.Prime(i) { |
|
table = append(table, i) |
|
} |
|
} |
|
|
|
for _, i := range table { |
|
lib.ChallengeMain("addprimesum", strconv.Itoa(i)) |
|
} |
|
// special cases |
|
lib.ChallengeMain("addprimesum") |
|
lib.ChallengeMain("addprimesum", `""`) |
|
lib.ChallengeMain("addprimesum", "1", "2") |
|
}
|
|
|