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.
43 lines
704 B
43 lines
704 B
5 years ago
|
package main
|
||
5 years ago
|
|
||
|
import (
|
||
|
"reflect"
|
||
5 years ago
|
"sort"
|
||
5 years ago
|
|
||
5 years ago
|
"./student"
|
||
5 years ago
|
)
|
||
|
|
||
5 years ago
|
func sortWordArr(a []string) {
|
||
|
sort.Strings(a)
|
||
|
}
|
||
|
|
||
5 years ago
|
func main() {
|
||
|
table := [][]string{{"a", "A", "1", "b", "B", "2", "c", "C", "3"}}
|
||
5 years ago
|
|
||
|
for i := 0; i < 15; i++ {
|
||
5 years ago
|
table = append(table, lib.MultRandWords())
|
||
5 years ago
|
}
|
||
|
|
||
|
for _, org := range table {
|
||
5 years ago
|
// copy for using the solution function
|
||
5 years ago
|
cp_sol := make([]string, len(org))
|
||
5 years ago
|
// copy for using the student function
|
||
5 years ago
|
cp_stu := make([]string, len(org))
|
||
|
|
||
|
copy(cp_sol, org)
|
||
|
copy(cp_stu, org)
|
||
|
|
||
5 years ago
|
sortWordArr(cp_sol)
|
||
5 years ago
|
student.SortWordArr(cp_stu)
|
||
|
|
||
|
if !reflect.DeepEqual(cp_stu, cp_sol) {
|
||
5 years ago
|
lib.Fatalf("%s(%v) == %v instead of %v\n",
|
||
5 years ago
|
"SortWordArr",
|
||
|
org,
|
||
|
cp_stu,
|
||
|
cp_sol,
|
||
|
)
|
||
|
}
|
||
|
}
|
||
|
}
|