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.
 
 
 
 

17 lines
330 B

package main
import (
solutions "../../solutions"
"github.com/01-edu/z01"
)
func main() {
array := []int{5, 4, 1}
for i := 0; i < 7; i++ {
array = append(array, z01.RandIntBetween(0, 99999))
}
for i := 0; i < len(array); i++ {
z01.Challenge("FindPrevPrimeProg", FindPrevPrime, solutions.FindPrevPrime, array[i])
}
}