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.
32 lines
888 B
32 lines
888 B
5 years ago
|
package student_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
solutions "./solutions"
|
||
|
student "./student"
|
||
|
"github.com/01-edu/z01"
|
||
|
)
|
||
|
|
||
|
func TestUnmatch(t *testing.T) {
|
||
|
arg1 := []int{1, 1, 2, 3, 4, 3, 4}
|
||
|
arg2 := []int{1, 1, 2, 4, 3, 4, 2, 3, 4}
|
||
|
arg3 := []int{1, 2, 1, 1, 4, 5, 5, 4, 1, 7}
|
||
|
arg4 := []int{1, 2, 3, 4, 5, 6, 7, 8}
|
||
|
arg5 := []int{0, 20, 91, 23, 10, 34}
|
||
|
arg6 := []int{1, 1, 2, 2, 3, 4, 3, 4, 5, 5, 8, 9, 8, 9}
|
||
|
|
||
|
randInt1 := z01.RandIntBetween(-100, 100)
|
||
|
randInt2 := z01.RandIntBetween(-1000, 1000)
|
||
|
randInt3 := z01.RandIntBetween(-10, 10)
|
||
|
|
||
|
arg7 := []int{randInt1, randInt2, randInt1, randInt2, randInt1 + randInt3, randInt1 + randInt3}
|
||
|
arg8 := []int{randInt1, randInt2, randInt1, randInt2, randInt1 + randInt3, randInt2 - randInt3}
|
||
|
|
||
|
args := [][]int{arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8}
|
||
|
|
||
|
for _, v := range args {
|
||
|
z01.Challenge(t, student.Unmatch, solutions.Unmatch, v)
|
||
|
}
|
||
|
}
|