yes
Time Limit: 1 seconds
Memory Limit: 256 MB
Rating: 800
Problem StatementA word $S$ is given that consists of lowercase English letters only. Find how many of each letter of the alphabet exists in $S$.
InputThe first line contains integer $N$, the length of $S$. Then follows string $S$, the length of which is guaranteed to not exceed $100$.
OutputOutput the number of a's, number of b's, ..., number of z's each separated by spaces.
Sample CasesSample Input 1: 9 ianojgood Sample Output 1: 1 0 0 1 0 0 1 0 1 1 0 0 0 1 3 0 0 0 0 0 0 0 0 0 0 0Explanation
Not available for this problem.
SourcesBOJ #10808
Submit | Back