FAQ: Blocks, Procs, and Lambdas - Keeping Your Code DRY

This community-built FAQ covers the “Keeping Your Code DRY” exercise from the lesson “Blocks, Procs, and Lambdas”.

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

Learn Ruby

FAQs on the exercise Keeping Your Code DRY

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!

Bonjour !
Merci pour le cours de Ruby, très ludique et facile à comprendre.

I have an issue with Proc
I don’t really understand how the Proc works.

multiples_of_3 = Proc.new do |n|
n % 3 == 0
end

print (1…100).to_a.select(&multiples_of_3)

How can we write the same thing without the Proc?

Hi, Just to reply the question you defined in English, it would look like this -

print (1...100).to_a.select {|n|
   n % 3 == 0
}

Without procs we are just passing a block of code to the method “select” here.
To put DRY in place, we would want to use procs, that would just replace the block of code with the variable that stores the block of code.
You can call the same using “&” notation.

print (1…100).to_a.select(&multiples_of_3)

Correct me if I am wrong, I am still new, learning Ruby and its fun so far. Hope you find this explanation useful.

2 Likes

Can anyone explain why we use to_a in this example? Calling print (1..100).select(&multiples_of_3) without .to_a seems to return the same result (still an array of numbers) and I’m curious the reasoning for this as I’m new to Ruby.

1 Like

I believe you have a point here! Let me explain:

(1..100).to_a

.to_a converts the Range 1…100 into an Array that represents that range. That short conversion method returns a new object of a specific class that represents the current object.

(1..100).to_a.select(&multiples_of_3)

.select() is a Array class method which returns a new array containing all elements of array for which the given block returns a true value. The syntax is: Array.select().
The #select method is part of the Enumerable ruby module, which is a collection of iteration methods.

Last but not least:

(1..100)

A range (1…100) is an object which has a starting value & ending value. Interesting enough, the Range class includes Enumerable, so you get all the powerful iteration methods without having to convert the range into an array and then the .select() method returns a new array. So .to_a is not needed! Plus the code executes much faster without it, but that’s another story :wink:

Hence to conclude I believe the .to_a method is redundant here :slight_smile:

1 Like