관리 메뉴

솜씨좋은장씨

[Programmers] 최빈값 구하기 (Python) 본문

Programming/코딩 1일 1문제

[Programmers] 최빈값 구하기 (Python)

솜씨좋은장씨 2023. 1. 28. 23:20
728x90
반응형

코딩 1일 1문제! 오늘의 문제는 프로그래머스의 최빈값 구하기 입니다.

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

👨🏻‍💻 코드 ( Solution )

def solution(array):
    answer = -1
    
    freq_check = {}
    
    for num in array:
        if num not in freq_check:
            freq_check[num] = 0
        freq_check[num] += 1
        
    freq_items = sorted(freq_check.items(), key=lambda x: (-x[1]))
    
    if (len(freq_items) > 1 and freq_items[0][1] != freq_items[1][1]) or len(freq_items) == 1:
        answer = freq_items[0][0]
    
    return answer
 

GitHub - SOMJANG/CODINGTEST_PRACTICE: 1일 1문제 since 2020.02.07

1일 1문제 since 2020.02.07. Contribute to SOMJANG/CODINGTEST_PRACTICE development by creating an account on GitHub.

github.com

Comments