を含む配列があります
arrTV = ['Thor: The Dark World', 'Ender's Game', 'Jackass Presents: Bad Grandpa', 'Last Vegas', 'Free Birds', 'Free Birds' ]
最後の 2 つの要素は重複しています。配列をループして、重複が存在するかどうかを確認し、使用したくない.uniq
ご意見をお聞かせください
私はこのようなことを試しましたが、うまくいきません
arrTV.each do |i|
count = 0
#if arrTV[i] == arrTV[i+1]
# puts "equal"
# count = count + 1
#
#end
#puts count
#if arrTV[i] = arrTV[i+1]
#arrTV.delete_at(i+1)
#end
end
どこが間違っていますか?