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 trialjohn lau
3,471 PointsMake sure isEmpty reflects the state of the underlying array
Is that not what I'm doing?
struct Queue< Element > {
var array: [Element] = []
var isEmpty: Bool {
if array != nil {
return true
} else {
return false
}
}
}
4 Answers
Jennifer Nordell
Treehouse TeacherHi again. john lau ! Every array has a property named isEmpty
. This property is either true or false depending on if the array is empty or not. You can find the documentation here. So where you have that if
and else
statement, I simply wrote:
var isEmpty: Bool {
return array.isEmpty
}
Hope this helps!
Jennifer Nordell
Treehouse TeacherHi there! Close, but not quite. Remember, you can have an array that exists, but currently has nothing in it, which is what we have here. Might I suggest returning the isEmpty
property of the array?
I think you can get the answer with this hint, but let me know if you're still stuck!
john lau
3,471 PointsHi Jennifer,
I'd like to but i'm not sure what you mean
john lau
3,471 Pointsthks Jennifer