Discussion 解説
Use the shuffle()
method to randomly reorder the elements of an array.
shuffle()
メソッドを使って、配列の要素を無作為に再配列してください。
This method is equivalent to calling shuffle(using:)
, passing in the system’s default random generator.
このメソッドは、shuffle(using:)
を、システムの持つ省略時の無作為生成子を渡して呼び出すことに相当します。
Complexity: O(n), where n is the length of the collection. 計算量:O(n)、ここでnはコレクションの長さです。