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 trialChris Smith
6,791 PointsI'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.
let ages = [12,10,11,42,35,27,91,82,26,33,37,15]
let total = ages.reduce(0, {total, age in total + age})
Chris Smith
6,791 PointsHi Jeff Ripke, thank you. I actually managed to figure it out in the end. :)
1 Answer
John Hendrix
21,844 PointsHi 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, _: +)
Randell Pur
4,934 PointsThank you.
Jeff Ripke
41,989 PointsJeff Ripke
41,989 PointsThey want it in a simpler form:
I hope this helps, Jeff