From 1b57a209eb88e8be1ea63e7ad456dcbfa3dfa174 Mon Sep 17 00:00:00 2001 From: Jared Kneedler Date: Fri, 22 May 2020 14:27:44 -0400 Subject: [PATCH] my solution --- challenge.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/challenge.rb b/challenge.rb index 0585882..7d2bb3a 100644 --- a/challenge.rb +++ b/challenge.rb @@ -1,26 +1,26 @@ def capitalize_each_string(input) - #implement your solution here + input.map {|item| item.capitalize} end def fetch_the_dog(input) - #implement your solution here + input.select {|item| item == "dog" } end def no_dogs_allowed(input) - #implement your solution here + input.find_all {|item| item != "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 {|item| (item[0].downcase == "c") || (item[0].downcase == "d")} end ## DO NOT CHANGE CODE BELOW THIS LINE ##