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 trialJoshua Proto
6,998 PointsNot quite sure how to append for in loop To Array.
I just learned how to do for in loops in Swift 2.0 and although it makes sense to me, the code challenge is asking me to get a certain value from my loop and then express that in the earlier provided array, a process I'm having trouble with.
Specifically, the question is
Inside the body of the loop, we're going to use the multiplier to get the multiple of 6. For example, if the multiplier is 1, then the multiple is 1 times 6, which is equal to 6.
Once you have a value, append it to the results array. This way once the for loop has iterated over the entire range, the array will contain the first 10 multiples of 6.
Any advice? Thank you!
// Enter your code below
var results: [Int] = []
for multiplier in 1...10 {
print("\(multiplier) times 6 is equal to \(multiplier % 6)")
}
1 Answer
Johanns Gregorian
8,694 PointsTake a look through the Array documentation here, and look for append()
function:
edit: a bit more...
If I wanted to append the number 101 to my results
[Int] array, I would say:
results.append(101)
And, if I need to multiple 101 by 6 and append, I could do:
results.append(101 * 6)
And, if I was required to append 1 through 10 to my array, I could do something like this:
for num in 1...10 {
results.append(num)
}
Now, put all of these together. :)
Joshua Proto
6,998 PointsWow this was much simpler than I thought! Thank you for spelling it out like that, very useful! Fixed it up by adding results.append(multiplier * 6). Thanks again!
Johanns Gregorian
8,694 PointsJohanns Gregorian
8,694 PointsYour previous code was closer to the correction solution!