# アルゴ式: 931 順列チェック (Swift)

## [順列チェック](https://algo-method.com/tasks/931)

- タイトルが順列と書いてあると思いつつ、順番関係ないなとSetを使った
- 比較的簡単な問題だし、いろんな実装をしてみた
- 計算複雑性は変わらないし、実行時間にそんなに差はないけれど

[editorial]: https://algo-method.com/tasks/931/editorial

### 提出

- [Set](https://algo-method.com/submissions/452496)
- [Count and upper limit](https://algo-method.com/submissions/452497)
- [Array](https://algo-method.com/submissions/452499)
- [Array with early conclusion](https://algo-method.com/submissions/452500)
