Skip to content

Instantly share code, notes, and snippets.

@adammenges
Last active December 22, 2015 13:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adammenges/6478581 to your computer and use it in GitHub Desktop.
Save adammenges/6478581 to your computer and use it in GitHub Desktop.
public void shuffleCards (int[] cards){
int temp, index;
for (int i = 0; i < cards.length; i++){
index = (int) (Math.random() * (cards.length - i)) + i;
temp = cards[i];
cards[i] = cards[index];
cards[index] = temp;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment