Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
@ads という配列をループ処理し、配列内の互いに重複しているすべてのオブジェクトを削除する必要があります。どうすればいいですか?
@ads = @ads.uniq
また
@ads.uniq!
以下のコードは、ID ごとに一意の結果を返します。
@ads = @ads.uniq{|ad| ad.id}