Skip to content

Instantly share code, notes, and snippets.

@niuage
Created February 3, 2020 18:00
Show Gist options
  • Save niuage/b83bb96f947c60d0bd99cf1807893ffd to your computer and use it in GitHub Desktop.
Save niuage/b83bb96f947c60d0bd99cf1807893ffd to your computer and use it in GitHub Desktop.
# ca marche
[1, 2, 1, 2, 3, 3].reduce({}) do |memo, i|
memo[i] ||= []
memo[i] << i
memo
end
# ca marche pas
[1, 2, 1, 2, 3, 3].reduce(Hash.new([])) do |memo, i|
memo[i] << i
memo
end
# why?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment