def de_dupe(input) hash = {} input.each { |e| hash[e] = true } hash.keys.sort end
puts de_dupe(worte)