Skip to content

Instantly share code, notes, and snippets.

@itzsaga
Created March 14, 2017 03:53
Show Gist options
  • Save itzsaga/0783e92ef90fc337260e3df4838ba283 to your computer and use it in GitHub Desktop.
Save itzsaga/0783e92ef90fc337260e3df4838ba283 to your computer and use it in GitHub Desktop.
def all_holidays_with_bbq(holiday_hash)
holiday_hash.map do |season, holidays|
holidays.map do |holiday_name, supplies
supplies.include?("BBQ") ? holiday_name : nil
end
end.flatten.compact
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment