← Back to List

16408번: Poker Hand ↗

Solutions

Python 3
71 B | 71 chars
L = [i[0] for i in input().split()]
print(max([L.count(i) for i in L]))