From cea1d87fcc454c548e53c6ca63f8d6f4a890f3be Mon Sep 17 00:00:00 2001 From: = <=> Date: Fri, 22 May 2020 14:10:07 -0400 Subject: [PATCH] Add my solution to each problem --- challenge.rb | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/challenge.rb b/challenge.rb index 0585882..f246f62 100644 --- a/challenge.rb +++ b/challenge.rb @@ -1,26 +1,34 @@ def capitalize_each_string(input) - #implement your solution here + input.map { |string| + string.capitalize + } end def fetch_the_dog(input) - #implement your solution here + input.select{ |string| + string == "dog" + } end def no_dogs_allowed(input) - #implement your solution here + input.select{ |string| + string != "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.select { |string| + string[0] == 'c' or string[0] == 'd' + } end ## DO NOT CHANGE CODE BELOW THIS LINE ##