[READ-ONLY] Mirror of https://github.com/shuuji3/competitive-programming. 馃洬 Codes submitted to competitive programming platforms
aizu-online-jadge aoj atcoder hackerrank leetcode
0

Configure Feed

Select the types of activity you want to include in your feed.

1n = int(input()) 2deck = [] 3for i in range(n): 4 deck.append(input()) 5 6for suit in 'SHCD': 7 for i in range(1, 14): 8 card = f'{suit} {i}' 9 if card not in deck: 10 print(card)