Comcast interview question

Write a java program to shuffle the deck of cards.

Interview Answer

Anonymous

Jul 9, 2018

import java.util.Random; public class ShuffleCardDeck { public static void main(String[] args) { int numOfCards = 52; int[] cards = new int[52]; for(int i=0; i

1