-->
当前位置:首页 > 题库

PROGRAMMING:Most letters

Luz5年前 (2021-05-10)题库457
Input a string composed of lowercase English letters, count the most frequent letters and the number of occurrences, and output.
###Input format:
Enter a string of lowercase letters.
###Output format:
Output the most frequent letters and the number of occurrences, separated by commas, and finally wrapped.
###Input example:
```in
abcdefghijklmnopqrstuvwxyzmmm
```
###Output example:
```out
m,4
```







answer:If there is no answer, please comment