0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

配列内の重複要素を削除して一つにするスニペット

Posted at

重複したものは一つにしたい

以下のようなリストがあるとします。

["orange", "apple", "grape", "apple", "strawberry", "strawberry"]

appleとstrawberryが重複してリストにあります。
一種類につき一つだけ残したい場合は次のようにします。

for loopで処理

fruits = ["orange", "apple", "grape", "apple", "strawberry", "strawberry"]
for i, f in enumerate(fruits): # 基準となるフルーツとインデックスを取得
  for compared_i, compared_f in enumerate(fruits): # 比較対象のフルーツとインデックスを取得
    
    if i != compared_i and f == compared_f: # 両者のインデックスが同じではなく、要素が同じ場合、比較対象を削除
      fruits.pop(i)

print(fruits)

['orange', 'grape', 'apple', 'strawberry']

🐣


フリーランスエンジニアです。
お仕事のご相談こちらまで
rockyshikoku@gmail.com

機械学習、ARアプリ(Web/iOS)を作っています。
機械学習/AR関連の情報を発信しています。

Twitter
Medium
GitHub

0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?