Skip to content

Instantly share code, notes, and snippets.

@Willianvdv
Created November 30, 2022 20:12
Show Gist options
  • Save Willianvdv/3bb9fbfbeb0d82e7870239b83229e982 to your computer and use it in GitHub Desktop.
Save Willianvdv/3bb9fbfbeb0d82e7870239b83229e982 to your computer and use it in GitHub Desktop.
def Organizer(c)=c.select{_1=~/^(?!tom)\w{5}/}
# Modify the solution above. Emojis are free.
# Code below will check correctness.
example_collection = [
'apples',
33,
nil,
'hat',
'tomatoes',
'toothbrush',
'laptop'
]
raise unless Organizer(example_collection) == %w[apples toothbrush laptop]
puts 'It works!'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment