백준 1157 ⭐

Grace Goh·2022년 9월 12일
0

백준 (python)

목록 보기
26/27
post-custom-banner
words = input().upper() # 대문자로 반환
unique_words = list(set(words))  # 입력받은 문자열에서 중복값을 제거

cnt_list = []
for x in unique_words :
    cnt = words.count(x)
    cnt_list.append(cnt)  # count 숫자를 리스트에 append

if cnt_list.count(max(cnt_list)) > 1 :  # count 숫자 최대값이 중복되면
    print('?')
else :
    max_index = cnt_list.index(max(cnt_list))  # count 숫자 최대값 인덱스(위치)
    print(unique_words[max_index])
  • .upper()

  • .index()

profile
Español, Inglés, Coreano y Python

0개의 댓글