[1157]
#Solution
words = input().upper() #대소문자 구별 X
uniq_words = list(set(words)) #중복제거 aabdc면 a,b,d,c만 남음
cnt = [] #갯수 저장 리스트
for i in uniq_words:
if i in words:
cnt.append(words.count(i))
# print(cnt)
if cnt.count(max(cnt)) > 1: #최댓값 중복 갯수
print("?")
else:
print(uniq_words[cnt.index(max(cnt))]) #cnt의 max값의 인덱스
어렵다
'Algorithm' 카테고리의 다른 글
[Swift] 스위프트 자료구조, 알고리즘 공부하기 좋은 블로그 (0) | 2021.08.24 |
---|---|
[Baekjoon] 2557: HelloWorld - Swift (0) | 2021.08.12 |
[Baekjoon] 2675: 문자열 반복 (0) | 2021.06.02 |
[Baekjoon] 10809: 알파벳 찾기 (0) | 2021.06.01 |
[Baekjoon] 11720: 숫자의 합 (0) | 2021.06.01 |
댓글