Swift リスト内をランダム

リスト内をランダムで並べ替える

Swift Algorithmが便利。
https://github.com/apple/swift-algorithms

Swift Algorithm準備

Swift Packagesで追加する。

Example

countをリストの要素数にする事で、リスト内をランダムで並び替えられる。

import Algorithms
:
:
let randamcollections = collections.randomSample(count: collections.count)

Swift

Posted by shi-n