문제 설명 및 제한사항
아이디어 및 해결 방법
코드
from collections import Counter
def solution(array):
cntr = Counter(array)
if len(cntr) == 1:
return list(cntr.keys())[0]
common = cntr.most_common(2)
if common[0][1] == common[1][1]:
return -1
else:
return common[0][0]
Python
복사
출처
프로그래머스 코딩테스트 연습 https://school.programmers.co.kr/learn/challenges