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 trial

iOS Closures in Swift First Class Functions Higher Order Functions

what 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)) }) }

functions.swift
// 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)) })
    }
}

I am getting this error back when I submit my code

"Bummer! Make sure removeVowels accepts a String and returns a String"

2 Answers

Have you found the answer? I have the same problem.

Andrei, No I havent I think there is something with the site rather than the code!