Pregunta de entrevista de Comcast

Write a java program to shuffle the deck of cards.

Respuesta de la entrevista

Anónimo

9 jul 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