Refactor & Beautify & destruction commit
return early, remove else branches, reorder conditions and top-level functions, remove empty lines, remove unnecessary append(), fix typos, stop using testing package, remove dead code, fix mistakes in subjects, tests and solutions, remove disclaimers, reformat comments, simplify solutions, tests, add more instructions to subjects, remove obsolete files, etc.
Some of the reasons behind those modifications will be added to good-practices.en.md
Some of the exercises are now broken, they will have to be fixed, most of them have a "TODO:" comment.
5 years ago
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"reflect"
|
|
|
|
|
|
|
|
"../lib"
|
|
|
|
"./correct"
|
|
|
|
"./student"
|
|
|
|
)
|
|
|
|
|
Refactor & Beautify & destruction commit
return early, remove else branches, reorder conditions and top-level functions, remove empty lines, remove unnecessary append(), fix typos, stop using testing package, remove dead code, fix mistakes in subjects, tests and solutions, remove disclaimers, reformat comments, simplify solutions, tests, add more instructions to subjects, remove obsolete files, etc.
Some of the reasons behind those modifications will be added to good-practices.en.md
Some of the exercises are now broken, they will have to be fixed, most of them have a "TODO:" comment.
5 years ago
|
|
|
func main() {
|
|
|
|
arg := [][]string{{"hello", "", "hi", "", "salut", "", ""}}
|
|
|
|
|
|
|
|
for i := 0; i < 20; i++ {
|
|
|
|
n := lib.RandIntBetween(5, 20) // random size of the slice
|
|
|
|
|
|
|
|
orig := make([]string, n) // slice with the original value
|
|
|
|
|
|
|
|
num_pos := lib.RandIntBetween(1, n-1) // random number of positions to be written
|
|
|
|
|
|
|
|
for i := 0; i < num_pos; i++ {
|
|
|
|
word := lib.RandWords() // random string value
|
|
|
|
rand_pos := lib.RandIntBetween(0, n-1) // random position in the slice
|
|
|
|
orig[rand_pos] = word
|
|
|
|
}
|
|
|
|
arg = append(arg, orig)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, v := range arg {
|
|
|
|
sli_sol := make([]string, len(arg)) // slice to apply the solution function
|
|
|
|
sli_stu := make([]string, len(arg)) // slice to apply the student function
|
|
|
|
|
|
|
|
copy(sli_sol, v)
|
|
|
|
copy(sli_stu, v)
|
|
|
|
|
|
|
|
sol_size := correct.Compact(&sli_sol)
|
|
|
|
stu_size := student.Compact(&sli_stu)
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(sli_stu, sli_sol) {
|
|
|
|
lib.Fatalf("Produced slice: %v, instead of %v\n",
|
|
|
|
sli_stu,
|
|
|
|
sli_sol,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
if sol_size != stu_size {
|
|
|
|
lib.Fatalf("%s(%v) == %v instead of %v\n",
|
|
|
|
"Compact",
|
|
|
|
v,
|
|
|
|
sli_stu,
|
|
|
|
sli_sol,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|