Last active
December 1, 2022 00:13
-
-
Save swalberg/b758263224d8654704734423c880d401 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def Organizer(🎁) | |
🎁.select{|🧽|🧽.is_a?(String)&&🧽.size>5&&🧽!='tomatoes' } | |
end | |
# Modify the solution above. Emojis are free. | |
# Code below will check correctness. | |
example_collection = [ | |
'apples', | |
33, | |
nil, | |
'hat', | |
'tomatoes', | |
'toothbrush', | |
'laptop' | |
] | |
collection_two = [ | |
'my best friend gary', | |
Array, | |
'hairbrush', | |
'drawers', | |
99 | |
] | |
collection_three = [ | |
'tomatillos', | |
'tin', | |
'table', | |
'mother-in-law' | |
] | |
raise unless Organizer(example_collection) == ["apples", "toothbrush", "laptop"] | |
raise unless Organizer(collection_two) == ["my best friend gary", "hairbrush", "drawers"] | |
raise unless Organizer(collection_three) == ["tomatillos", "mother-in-law"] | |
puts 'It works!' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Wasn't sure if spaces counted, but let's strip those out!