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.
26 lines
445 B
26 lines
445 B
package main |
|
|
|
import ( |
|
student "student" |
|
|
|
"github.com/01-edu/public/go/tests/lib" |
|
) |
|
|
|
func lastRune(s string) rune { |
|
runes := []rune(s) |
|
index := len(runes) - 1 |
|
return runes[index] |
|
} |
|
|
|
func main() { |
|
table := lib.MultRandASCII() |
|
table = append(table, |
|
"Hello!", |
|
"Salut!", |
|
"Ola!", |
|
lib.RandStr(lib.RandIntBetween(1, 15), lib.RandAlnum()), |
|
) |
|
for _, arg := range table { |
|
lib.Challenge("LastRune", student.LastRune, lastRune, arg) |
|
} |
|
}
|
|
|