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 trialRichard Sun
11,257 PointsGeneric Element in Array conforms to PrefixContaining but, according to Xcode, has no func "hasPrefix"
I think I've gotten the code correct for deciding if the Element in the array has the prefix, but the elements in the array that conform to PrefixContaining don't have the function "hasPrefix". What is wrong with my code?
protocol PrefixContaining {
func hasPrefix(_ prefix: String) -> Bool
}
extension String: PrefixContaining {}
// Enter code below
extension Array where Element: PrefixContaining {
func filter(byPrefix prefix: String) -> [Element] {
var newArray: [Element] = []
for string in self {
if (self.hasPrefix(prefix)) {
newArray.append(string)
}
}
return newArray
}
}
1 Answer
Jeff McDivitt
23,970 PointsHi Richard - Not sure if you have figured this one out already there are a few issue with your code but you are not he right track
extension Array where Element: PrefixContaining {
func filter(byPrefix prefix: String) -> [Element]{
var output = [Element]()
for element in self {
if (element.hasPrefix(prefix)) == true {
output.append(element)
}
}
return output
}
}
Richard Sun
11,257 PointsRichard Sun
11,257 PointsYeah, I realized my mistakes after a bit. I didn't see them until after I posted this question. Thanks for the help