From fc90242a400e292c56d3576ced149f11c28d31ae Mon Sep 17 00:00:00 2001 From: thunter Date: Fri, 24 May 2019 11:30:40 -0400 Subject: [PATCH] answers for More Enmerables --- challenge.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/challenge.rb b/challenge.rb index 0585882..2e74896 100644 --- a/challenge.rb +++ b/challenge.rb @@ -1,26 +1,26 @@ def capitalize_each_string(input) - #implement your solution here + input.map(&:capitalize) end def fetch_the_dog(input) - #implement your solution here + input.select { |x| x == "dog"} #implement your solution here end def no_dogs_allowed(input) - #implement your solution here + input.reject { |x| x == "dog"}#implement your solution here end def count_the_animals(input) - #implement your solution here + input.count#implement your solution here end def fetch_the_first_two(input) - #implement your solution here + input.first(2)#implement your solution here end def fetch_CD_animals(input) - #implement your solution here + input.grep(/cat|dog/)#implement your solution here end ## DO NOT CHANGE CODE BELOW THIS LINE ## @@ -29,7 +29,7 @@ def fetch_CD_animals(input) p capitalize_each_string(animals) == ["Cat", "Moose", "Dog", "Bird"] -p fetch_the_dog(animals) == ["dog"] +p fetch_the_dog(animals) == ["dog"] p no_dogs_allowed(animals) == ["cat", "moose", "bird"]