Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialmark gilchrist
Courses Plus Student 33,169 Pointswhat is wrong with this?
in the closures course task 2 I have to below code
func removeVowels(from str: String ) -> String { let vowels = ["a","e","i","o","u","A","E","I","O","U"] return String(str.characters.filter{ !vowels.contains(String($0)) }) }
// Enter your code below
extension String {
func transform(_ trans:(String)->String) -> String {
return trans(self)
}
func removeVowels(from str: String ) -> String {
let vowels = ["a","e","i","o","u","A","E","I","O","U"]
return String(str.characters.filter{ !vowels.contains(String($0)) })
}
}
2 Answers
Andrei Li
34,475 PointsHave you found the answer? I have the same problem.
mark gilchrist
Courses Plus Student 33,169 PointsAndrei, No I havent I think there is something with the site rather than the code!
Aananya Vyas
20,157 PointsI faced the same problem This helped: https://teamtreehouse.com/community/remove-vowels-from-the-string
mark gilchrist
Courses Plus Student 33,169 Pointsmark gilchrist
Courses Plus Student 33,169 PointsI am getting this error back when I submit my code
"Bummer! Make sure removeVowels accepts a String and returns a String"