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.
 
 
 
 

32 lines
561 B

package main
import (
"strconv"
"github.com/01-edu/z01"
)
func main() {
table := [][]string{}
table = append(table,
[]string{"0", "0"},
[]string{"1", "2"},
[]string{"2"},
[]string{"0"},
[]string{"3", "3"},
[]string{"1", "5"},
[]string{"5", "1"},
[]string{"4", "3"},
)
for i := 0; i < 2; i++ {
number1 := strconv.Itoa(z01.RandIntBetween(1, 200))
number2 := strconv.Itoa(z01.RandIntBetween(1, 200))
table = append(table, []string{number1, number2})
}
for _, v := range table {
z01.ChallengeMain("printchessboard", v...)
}
}