You are viewing a single comment's thread. Return to all comments →
//Swift
func pangrams(s: String) -> String { // Write your code here var set: Set = []
for char in s { set.insert(char.lowercased()) } set.remove(" ") if set.count == 26 { return "pangram" } else { return "not pangram" }
}
Seems like cookies are disabled on this browser, please enable them to open this website
Pangrams
You are viewing a single comment's thread. Return to all comments →
//Swift
func pangrams(s: String) -> String { // Write your code here var set: Set = []
}