0
1

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.

タカシAdvent Calendar 2022

Day 17

【Swift】配列に重複する要素を追加しないようにする

Posted at

Set

配列に重複する要素を追加できないようにするにはSetを使用する。

var a : Set<要素の型> = [・・・]

実際にコードにするとこんな感じ。

var characters: Set<String> = ["ロイド", "ヨル", "アーニャ", "ボンド", "ダミアン"]

characters.insert("アーニャ") //"アーニャ"を追加
print(characters) 
//["ヨル", "ダミアン", "ロイド", "アーニャ", "ボンド"](重複で無効になるため追加されない)

characters.insert("フランキー") //"フランキー"を追加
print(characters) //["ヨル", "フランキー", "ダミアン", "ロイド", "アーニャ", "ボンド"]

characters.insert("フランキー") //"フランキー"を追加(重複で無効)
print(characters) 
//["ヨル", "フランキー", "ダミアン", "ロイド", "アーニャ", "ボンド"](重複で無効になるため追加されない)

重複する要素を削除する

配列をSet(array)のように、Set型に変換した後に、もう1度Array(Set(array))のように、配列に変換する。

var number = Array(Set(number))

実際にコードにするとこんな感じ。

var characters: [String] = ["ロイド", "ヨル", "アーニャ", "ロイド", "ヨル"]

var uniqueCharacters = Array(Set(characters))

print(uniqueCharacters) //["アーニャ", "ヨル", "ロイド"]

文字列分かりづらいから数字ですればよかった。。

0
1
0

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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?