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.
 
 
 
 

27 lines
489 B

package main
import (
solutions "./solutions"
student "./student"
"github.com/01-edu/z01"
)
func main() {
var arr []string
for l := 0; l < 7; l++ {
a := z01.RandIntBetween(5, 20)
b := z01.RandASCII()
str := z01.RandStr(a, b)
arr = append(arr, str)
}
arr = append(arr, " ")
// example from the subject
arr = append(arr, "Hello 78 World! 4455 /")
for i := 0; i < len(arr); i++ {
z01.Challenge("AlphaCount", student.AlphaCount, solutions.AlphaCount, arr[i])
}
}