Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions challenge.rb
Original file line number Diff line number Diff line change
@@ -1,26 +1,25 @@

def capitalize_each_string(input)
#implement your solution here
input.map{ |x| x.capitalize}
end

def fetch_the_dog(input)
#implement your solution here
input.reject { |e| e != "dog" }
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this returns an array with one element (the "dog"), but I wouldn't expect the result to be an array.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oops. I was wrong. Ignore that ^

Completely different nitpick: reject and != are both "negative" in a sense, making this a double negative in my opinion. Can this be rephrased positively?

end

def no_dogs_allowed(input)
#implement your solution here
end
input.reject { |e| e == "dog" }end

def count_the_animals(input)
#implement your solution here
input.size
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 { |e| e[/\b[cd]/]}
end

## DO NOT CHANGE CODE BELOW THIS LINE ##
Expand All @@ -29,7 +28,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"]

Expand Down