Ruby - Enumerable and Collection Processing
What will be the output of this Ruby code?
words = ['cat', 'car', 'dog', 'deer']
groups = words.group_by { |w| w[0] }
puts groups['c'].inspect