From 5b6057624266d976ec393a21e43849877924e4de Mon Sep 17 00:00:00 2001 From: Eric Noble Date: Fri, 16 Mar 2018 12:43:14 -0400 Subject: [PATCH] Initial commit. Tests all pass. --- challenge.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/challenge.rb b/challenge.rb index 0585882..ece838b 100644 --- a/challenge.rb +++ b/challenge.rb @@ -1,26 +1,26 @@ def capitalize_each_string(input) - #implement your solution here + input.map {|a| a.capitalize} end def fetch_the_dog(input) - #implement your solution here + input.select {|a| a.casecmp("dog") == 0} end def no_dogs_allowed(input) - #implement your solution here + input.reject {|a| a.casecmp("dog") == 0} 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.grep(/^[cdCD].*/) end ## DO NOT CHANGE CODE BELOW THIS LINE ##