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 Swift 2.0 Collections and Control Flow Control Flow With Loops Working with Loops

Aaron Clayton
Aaron Clayton
325 Points

Sum of array

The second task is never covered in videos. I am lost.

I don't even know where to start.

while.swift
let numbers = [2,8,1,16,4,3,9]
var sum = 0
var counter = 0

// Enter your code below
while counter < numbers.count {
  counter++ 
}

1 Answer

Chris Shaw
Chris Shaw
26,676 Points

Hi Aaron,

Getting the sum total of the array is very straight forward, the expectation is however that you would have learned this from previous Swift courses which explain basic operators such as sum.

You can learn more about operators in the Swift Basics course.

In the case of task 2 of this challenge, we need to use the addition + operator or the shorthand += operator. Both of these operators allows us to add a new value to an existing value.

Using the basic addition operator +

let number = 1
number = number + 1

Using the shorthand addition operator +=

let number = 1
number += 1

In the case of this challenge, we need to get the total of all the numbers in the numbers array. As we have a counter variable which we're incrementing the total of; we can use it to access each index within our array and then add the value to our sum variable.

while counter < numbers.count {
  sum = sum + numbers[counter]
  counter++
}

Alternatively, we can also use the shorthand operator for addition which yields the same result as above.

while counter < numbers.count {
  sum += numbers[counter]
  counter++ 
}

Hope that helps!