Skip to content

Instantly share code, notes, and snippets.

@igaiga
Created July 18, 2017 09:44
Show Gist options
  • Save igaiga/58abe028148ad1a7235c3c46265c5518 to your computer and use it in GitHub Desktop.
Save igaiga/58abe028148ad1a7235c3c46265c5518 to your computer and use it in GitHub Desktop.
h = {}
["a", "a", "b"].each do |x|
h[x] = [] unless h[x]
h[x] << x
end
p h
#=> {"a"=>["a", "a"], "b"=>["b"]}
@nobu
Copy link

nobu commented Jul 23, 2017

default_proc で代入すると意図していないところでも勝手に追加されるので、追加するところで代入するとか

h["a"] <<= "a"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment