From 33c1405cf582b61393cccaf4b26732ff2c52c1a6 Mon Sep 17 00:00:00 2001 From: Luke Schoettinger Date: Fri, 10 May 2019 11:34:59 -0400 Subject: [PATCH] all done --- challenge.rb | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/challenge.rb b/challenge.rb index 0585882..6f05f49 100644 --- a/challenge.rb +++ b/challenge.rb @@ -1,26 +1,34 @@ def capitalize_each_string(input) #implement your solution here + input.map(&:capitalize) end def fetch_the_dog(input) #implement your solution here + [input.find {|i| i == "dog"}] end def no_dogs_allowed(input) #implement your solution here + input.reject {|i| i == "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.select do |animal| + animal[0] == 'c' || animal[0] == 'd' + end end ## DO NOT CHANGE CODE BELOW THIS LINE ##