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.
15 lines
318 B
15 lines
318 B
1 year ago
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
fmt.Println(IsCapitalized("Hello! How are you?"))
|
||
|
fmt.Println(IsCapitalized("Hello How Are You"))
|
||
|
fmt.Println(IsCapitalized("Whats 4this 100K?"))
|
||
|
fmt.Println(IsCapitalized("Whatsthis4"))
|
||
|
fmt.Println(IsCapitalized("!!!!Whatsthis4"))
|
||
|
fmt.Println(IsCapitalized(""))
|
||
|
}
|