Source Code
from collections import Counter

atypical = Counter("atypical")
s = Counter(input().strip().lower())

for char, count in atypical.items():
    if s[char] < count:
        print("No")
        break
else:
    print("Yes")
Copy
We Love Atypical m-salti
Python 3
18 ms
4.1 MB
Accepted