RosettaCodeData/Task/Remove-duplicate-elements/Ruby/remove-duplicate-elements-1.rb
2023-07-01 13:44:08 -04:00

2 lines
116 B
Ruby

ary = [1,1,2,1,'redundant',[1,2,3],[1,2,3],'redundant']
p ary.uniq # => [1, 2, "redundant", [1, 2, 3]]