Consider the following code segment that shuffles a deck of cards. Modify the co
ID: 3867159 • Letter: C
Question
Consider the following code segment that shuffles a deck of cards. Modify the code so that the suits stay together. That is, shuffle the clubs, then shuffle the diamonds, then the hearts, and finally the spades. Therefore all the clubs are dealt first, then the diamonds, etc. P = {[], [], [], []} S = {'Clubs', 'Diamonds', 'Hearts', 'Spades'}: for c = 1: 52 cards (c) suit = s{ceil(c/13))}: cards(c) val = mod(c, 13) + 1: end x = 1: 52: for ii = 1: 100 c1 = randi ([1, 52]): c2 = randi ([1, 52]): t = x(c1): x(c1) = x(c2): x(c2) = t: end for c = 1.52 ii = mod (c, 4) + 1: p{ii} = [p{ii} cards (c))]: endExplanation / Answer
Answer for the given Question:
This below code may be helpful to solve the given problem statement.