Skip to content

Instantly share code, notes, and snippets.

@clayton
Created April 7, 2010 07:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save clayton/358623 to your computer and use it in GitHub Desktop.
Save clayton/358623 to your computer and use it in GitHub Desktop.
ruby 1.8.6 (2007-09-24 patchlevel 111) [i486-linux]
irb(main):002:0> [[{"id" => 102}], {"id" => 102}].flatten.uniq
=> [{"id"=>102}, {"id"=>102}]
ruby 1.8.7 (2009-06-08 patchlevel 173) [universal-darwin10.0]
>> [[{"id" => 102}], {"id" => 102}].flatten.uniq
=> [{"id"=>102}]
WTF?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment