FAQ: Hashes and Symbols - Dare to Compare

This community-built FAQ covers the “Dare to Compare” exercise from the lesson “Hashes and Symbols”.

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

Learn Ruby

FAQs on the exercise Dare to Compare

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!

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

Need broader help or resources? Head here.

Looking for motivation to keep learning? Join our wider discussions.

Learn more about how to use this guide.

Found a bug? Report it!

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!

I notice that the time doesn’t scale linearly. When I look up b the string takes almost twice as long. When I look up f the symbol time is 0.001 s longer than string. Also, the string time is always about 0.007 s but the symbol time varies from about 0.004 to about 0.008 depending on the letter. Why is that?

Didn’t you JUST tell us in the previous lesson that the new syntax for symbols is a colon in front of the name? Now this very next exercise is using it behind the name?
Also, no matter what browser I use, you’re editor/site keeps disconnecting and reconnecting constantly. Not to mention throwing errors when there are none.
Who would pay for this garbage?

grades = { alice: 100,
  bob: 92,
  chris: 95,
  dave: 97
}
 
grades.select { |name, grade| grade <  97 }
# ==> { :bob => 92, :chris => 95 }
 
grades.select { |k, v| k == :alice }
# ==> { :alice => 100 }

And in the next lesson, we have it both ways…

Irrespective of your connection issues, the above is not a symbol, but a key.

1 Like