← Back to List

15184번: Letter Count ↗

Solutions

Python 3
89 B | 89 chars
s = input().upper()

for i in range(65, 91):
  print(f"{chr(i)} | {'*'*s.count(chr(i))}")