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