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.
24 lines
363 B
24 lines
363 B
5 years ago
|
package main
|
||
|
|
||
|
import (
|
||
|
"../common"
|
||
|
"./student"
|
||
|
)
|
||
|
|
||
|
func findPrevPrime(nb int) int {
|
||
|
if nb < 2 {
|
||
|
return 0
|
||
|
}
|
||
|
if common.IsPrime(nb) {
|
||
|
return nb
|
||
|
}
|
||
|
return findPrevPrime(nb - 1)
|
||
|
}
|
||
|
|
||
|
func main() {
|
||
|
a := append(lib.MultRandIntBetween(0, 99999), 5, 4, 1)
|
||
|
for _, elem := range a {
|
||
|
lib.Challenge("FindPrevPrime", student.FindPrevPrime, findPrevPrime, elem)
|
||
|
}
|
||
|
}
|