package solutions
import "unicode"
func IsLower(s string) bool {
for _, r := range s {
if !unicode.IsLower(r) {
return false
}
return true