Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Aaron Clayton
325 PointsSum of array
The second task is never covered in videos. I am lost.
I don't even know where to start.
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
26,662 PointsHi 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!