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 trialDavid Whitmer
4,006 PointsArrays lesson does not appear to accept correct answer
This seems to provide the correct answer in XCode, but I am being told it is wrong.
var todo = ["Learn Swift", "Build App", "Deploy App"]
println("\(todo.count)")
2 Answers
Colin Bell
29,679 PointsI think this answer should help:
https://teamtreehouse.com/forum/error-in-challenge-22-in-what-is-an-array-swift#answer-830872
The Treehouse compiler doesn't want this message. The reason is, using interpolation here isn't really needed. When you're printing the value of a variable by itself using println, there's no need to interpolate since the value is a number, not being explicitly included within a string. The code you're using would work in XCode however, if you include a backslash
var todo = ["Learn Swift", "Build App", "Deploy App"]
println(todo.count)
David Whitmer
4,006 PointsThanks a bunch!