配列内の重複する要素を取り除くには Array#uniq メソッドを使用します。
Array#uniq
arr = [1, 2, 3, 2, 1] arr.uniq! p arr # => [1, 2, 3]