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 trialShane Hartman
1,534 PointsMy code runs correctly in xcode but it doesn't pass the review process
Here are two variations that both work:
func iMap<T, U>(_ array: Array<T>,_ transformation: (T) -> U) -> Array<U> { var transArray: [U] = [] for i in 0..<array.count { transArray.append(transformation(array[i])) } return transArray }
func square(_ first: Int) -> Int {
return first * first
}
iMap([1,2,3,4,5], square)
func map<T, U>(array: Array<T>,transformation: (T) -> U) -> Array<U> { var transArray: [U] = [] for i in 0..<array.count { transArray.append(transformation(array[i])) } return transArray } map(array: [1,2,3,4,5], transformation: square)
func map<T, U>(_ array: Array<T>,_ transformation: (T) -> U) -> Array<U> {
var transArray: [U] = []
for i in 1...array.count {
transArray.append(transformation(array[i]))
}
return transArray
}
1 Answer
Jeff McDivitt
23,970 PointsTry this
func map<T, U>(array: [T], transformation: (T) -> U) -> [U] {
var newArray = [U]()
for values in array {
newArray.append(transformation(values))
}
return newArray
}