-Code
n = int(input())
s = list(input())
setArr = set(s)
cnt, result = 0, ""
for i in setArr:
if s.count(i) > cnt:
cnt = s.count(i)
result = i
print(result, cnt)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 25915번 연세여 사랑한다 (0) | 2022.11.22 |
---|---|
[백준/파이썬] 20877번 Minigolf (0) | 2022.11.21 |
[백준/파이썬] 13617번 Handebol (0) | 2022.11.19 |
[백준/파이썬] 25904번 안녕 클레오파트라 세상에서 제일가는 포테이토칩 (0) | 2022.11.18 |
[백준/파이썬] 25270번 99 Problems (0) | 2022.11.17 |