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.
 
 
 
 
 
 

18 lines
371 B

package main
import (
"github.com/01-edu/z01"
solutions "./solutions"
student "./student"
)
func main() {
args := []int{z01.RandIntBetween(2, 20)}
args = append(args, z01.MultRandIntBetween(2, 20)...)
args = append(args, z01.MultRandIntBetween(2, 20)...)
for _, v := range args {
z01.Challenge("ActiveBits", student.ActiveBits, solutions.ActiveBits, v)
}
}