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 2 Building Standard Library Functions Using Reduce

I'm stuck on the Reduce Function Swift task. Please help!

Q: In the editor you've been provided with an array of several people's ages. Using the reduce function, calculate the sum of the ages and assign it to a value named total.

I thought that I understood Reduce Functions... Can someone please tell me where I am going wrong? Thanks in advance.

reduce.swift
let ages = [12,10,11,42,35,27,91,82,26,33,37,15]
let total = ages.reduce(0, {total, age in total + age})
Jeff Ripke
Jeff Ripke
41,989 Points

They want it in a simpler form:

let ages = [12,10,11,42,35,27,91,82,26,33,37,15]
let total = ages.reduce(0, combine: +)

I hope this helps, Jeff

Hi Jeff Ripke, thank you. I actually managed to figure it out in the end. :)

1 Answer

Hi Jeff Ripke , I received an error that stated combine: needed to be changed to _:

The below code worked for me.

let ages = [12,10,11,42,35,27,91,82,26,33,37,15]

let total = ages.reduce(0, _: +)