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.
33 lines
586 B
33 lines
586 B
5 years ago
|
package main
|
||
|
|
||
|
import (
|
||
|
"github.com/01-edu/z01"
|
||
|
"strconv"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestPrintChessBoard(t *testing.T) {
|
||
|
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.ChallengeMainExam(t, v...)
|
||
|
}
|
||
|
}
|