What's the best, most elegant/efficient way to test if an array contains any element from a second array?
Two examples below, attempting to answer the question does 'foods' contain any element from 'cheeses':
cheeses = %w(chedder stilton brie mozzarella feta haloumi)
foods = %w(pizza feta foods bread biscuits yoghurt bacon)
puts cheeses.collect{|c| foods.include?(c)}.include?(true)
puts (cheeses - foods).size < cheeses.size