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.
33 lines
709 B
33 lines
709 B
package main |
|
|
|
import ( |
|
"./student" |
|
"github.com/01-edu/public/go/lib" |
|
) |
|
|
|
func strLen(str string) int { |
|
len := 0 |
|
|
|
strConverted := []rune(str) |
|
for i, _ := range strConverted { |
|
len = i + 1 |
|
} |
|
return len |
|
} |
|
|
|
func main() { |
|
randomStringCharset := "a b c d e f g h ijklmnopqrstuvwxyz A B C D E FGHIJKLMNOPRSTUVWXYZ" |
|
|
|
table := []string{} |
|
for i := 0; i < 10; i++ { |
|
randomLenghtOfWord := lib.RandIntBetween(1, 20) |
|
randomStrRandomLenght := lib.RandStr(randomLenghtOfWord, randomStringCharset) |
|
table = append(table, randomStrRandomLenght) |
|
} |
|
table = append(table, "Héllo!") |
|
table = append(table, randomStringCharset) |
|
|
|
for _, s := range table { |
|
lib.Challenge("StrLen", strLen, student.StrLen, s) |
|
} |
|
}
|
|
|