Shuffle

In creating random ordering of an array, such as shuffling the 52 cards in a deck, is there any advantage to calling myArray.shuffle multiple times? (Such as one might shuffle a deck of cards 3-4 times before the deal)

No… shuffle creates a random distribution, unlike physically shuffling a deck of cards where each shuffle only interleaves cards a short distance from their original position.

My sense as well. Thanks, Dave