# File lib/core/facets/enumerable/duplicates.rb, line 9 def nonuniq h1 = {} h2 = {} each {|i| h2[i] = true if h1[i] h1[i] = true } h2.keys end