From 4a38d88aaf6eee36a476b11b16cdff85f810c996 Mon Sep 17 00:00:00 2001 From: David Levine Date: Fri, 10 May 2019 11:34:15 -0400 Subject: [PATCH] Finished challenges --- challenge.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/challenge.rb b/challenge.rb index 0585882..d1b219f 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.reject{|animal| animal != "dog"} end def no_dogs_allowed(input) - #implement your solution here + input.select{|animal| animal != "dog"} end def count_the_animals(input) - #implement your solution here + input.length end def fetch_the_first_two(input) - #implement your solution here + input[0..1] 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 ## @@ -29,7 +29,7 @@ def fetch_CD_animals(input) p capitalize_each_string(animals) == ["Cat", "Moose", "Dog", "Bird"] -p fetch_the_dog(animals) == ["dog"] +p fetch_the_dog(animals) == ["dog"] p no_dogs_allowed(animals) == ["cat", "moose", "bird"]