Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions challenge.rb
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@

def capitalize_each_string(input)
#implement your solution here
input.map {|x| x.capitalize}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There's a shorthand syntax when we just call one method on the block variable:

input.map(&:capitalize)

This means: call capitalize on each item in the array, without needing to name the element as we iterate through them ("x"). It's more "declarative" and generally preferred.

end

def fetch_the_dog(input)
#implement your solution here
input.select{|x| x == 'dog'}
end

def no_dogs_allowed(input)
#implement your solution here
input.reject {|x| x == 'dog'}
end

def count_the_animals(input)
#implement your solution here
input.count
end

def fetch_the_first_two(input)
#implement your solution here
input.take(2)
end

def fetch_CD_animals(input)
#implement your solution here
input.grep /cat|dog/
end

## DO NOT CHANGE CODE BELOW THIS LINE ##
Expand Down