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