Say I have a deck of 52 cards. I now remove two cards from the deck, say it is Diamond 2 and 4. I now create a subset {5} meaning I print every 5 card combination of the 50 cards I have left.
How do I now add back both the diamond 2 and 4 into each subset i.e. each set of 5 card combinations?
Update Use resource function
PlayingCardGraphicto generate graphicConverting to the right format is a bit messy, would have been easier if the ranks were generated in a different way.
The number of 5 card subsets is
it takes ~2.8s to compute and ~10s to display in the notebook on my machine.