I'm writing a function that gets passed a pointer to an array of length 4. This array will contain integers 0 <= x <= 52 and I would like to construct an array of length 48 with every integer from da kine that's not in the passed in array. In python this would be
# just included for specificity
cards = [card for card in deck if card not in hand]
in C the best I can do is
int i, j, k, found_flag;
int cards[48]; /* int hand[4] is passed in */
k = 0;
for (i = 0; i < 52; i++) {
found_flag = 0;
for (j = 0; j < 4; j++) {
if (i == hand[j]) {
found_flag = 1;
break;
}
}
if (!found_flag) {
cards[k++] = i;
}
}
Is this optimal for this circumstance? Generally, is the 'go-to' pattern?
cards. Also, you have failed to initializek. Finally, you should probably check that you don't over- or under-fillcards. Also, right now you're treating cards as a set (each bit on/off), but you may have meantcards[k++] = i. – dmckee Aug 27 '10 at 5:40all_cards = set(range(52)); hand = [1, 10, 11, 44, 50]; deck = all_cards - set(hand)– hughdbrown Jul 10 '11 at 22:11