FAQ: Sets - .count and .isEmpty

This community-built FAQ covers the “.count and .isEmpty” exercise from the lesson “Sets”.

Paths and Courses
This exercise can be found in the following Codecademy content:

Learn Swift

FAQs on the exercise .count and .isEmpty

There are currently no frequently asked questions associated with this exercise – that’s where you come in! You can contribute to this section by offering your own questions, answers, or clarifications on this exercise. Ask or answer a question by clicking reply (reply) below.

If you’ve had an “aha” moment about the concepts, formatting, syntax, or anything else with this exercise, consider sharing those insights! Teaching others and answering their questions is one of the best ways to learn and stay sharp.

Join the Discussion. Help a fellow learner on their journey.

Ask or answer a question about this exercise by clicking reply (reply) below!
You can also find further discussion and get answers to your questions over in #get-help.

Agree with a comment or answer? Like (like) to up-vote the contribution!

Need broader help or resources? Head to #get-help and #community:tips-and-resources. If you are wanting feedback or inspiration for a project, check out #project.

Looking for motivation to keep learning? Join our wider discussions in #community

Learn more about how to use this guide.

Found a bug? Report it online, or post in #community:Codecademy-Bug-Reporting

Have a question about your account or billing? Reach out to our customer support team!

None of the above? Find out where to ask other questions here!

Why is this not an acceptable answer?

if sockDrawer.isEmpty == true{

print(“Time to add some more socks!”)

}

the correct answer does not include the boolean check. I got the same result running the code either way. Thanks!

There is a formatting error in instructions (at at least as rendered in Safari 14.0.3). It looks like the following but without the backslash (which I needed to escape the backpacks)

 print the following message: ``` We have [X] pairs of socks.

\``` 

It appears that someone used three back ticks where just one backtick was intended.

It appears that Codecademy is insisting on things that Swift itself does not insist on. I have encountered this in other lessons.

This makes sense, as they are trying to teach particular idioms and habits. So when we hit those kinds of things we should just try to do it the way the teacher wants us to.

Old post, I know, but in case other people have the same question:

sockDrawer.isEmpty is already a boolean, so testing if it ==true is redundant and not necessary.

It’s a general idiom in most programming langauges - if you’re using a bool type property or function inside in if statement, it’s almost always preferable to write it as if(myBool) instead of if(myBool == true). It’s simpler and reads cleaner IMO.