FAQ: The Refactor Factory - Omit Needless Words

This community-built FAQ covers the “Omit Needless Words” exercise from the lesson “The Refactor Factory”.

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

Learn Ruby

FAQs on the exercise Omit Needless Words

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!

Continuing the discussion from FAQ: The Refactor Factory - Omit Needless Words:


I don’t understand what’s the problem with my code, can somebody help me please?

I think you’re meant to refactor the original unless into a single line unless statement, and the original if into a single line if.

You have refactored into two ifs. :slight_smile:

Don't click me without trying again first!

This passed for me:

require 'prime'   # This is a module. We'll cover these soon!

def first_n_primes(n)

  return "n must be an integer." unless n.is_a? Integer
  return "n must be greater than 0." if n <= 0

  return Prime.first n
end

first_n_primes(10)

Oh ok thank you so much!

1 Like

Can someone tell me why we must use return instead of puts? And why if didn’t print in the console?

Use “return” instead of “puts” it will work.

Why do you need to use explicit returns in this exercise?

1 Like

Explicit returns are needed when they are not on the last line of the method. There are two returns for invalid entries and one final, implicit return of the Prime number array.

4 Likes

That makes sense!!! Thanks!

2 Likes