From c55a83d225245460cee103c4aae1c14c49fb2e93 Mon Sep 17 00:00:00 2001 From: Gary Miller Date: Fri, 10 May 2019 11:36:00 -0400 Subject: [PATCH] true --- challenge.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/challenge.rb b/challenge.rb index 0585882..2fc34f6 100644 --- a/challenge.rb +++ b/challenge.rb @@ -1,26 +1,26 @@ def capitalize_each_string(input) - #implement your solution here + input.map{ |animal| animal.capitalize} end def fetch_the_dog(input) - #implement your solution here + input.select{ |animal| animal == 'dog'} end def no_dogs_allowed(input) - #implement your solution here + input.reject{ |animal| animal == '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.first(2) end def fetch_CD_animals(input) - #implement your solution here + input.find_all{ |animal| animal[0] == 'c' || animal[0] == 'd'} end ## DO NOT CHANGE CODE BELOW THIS LINE ##