369게임 - Python

2023. 9. 29. 20:49공부/📝 프로그래머스

def solution(order):
    answer = str(order).count("3")
    answer += str(order).count("6")
    answer += str(order).count("9")
    return answer


# Test Cases
print(solution(3))
print(solution(29423))

  위와 같이 풀었습니다.

 


def solution(order):
    return sum(map(lambda x: str(order).count(str(x)), [3, 6, 9]))

  좋은 풀이를 발견했습니다. 배울 점이 있네요.

 


 

프로그래머스

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

programmers.co.kr

 

'공부 > 📝 프로그래머스' 카테고리의 다른 글

숨어있는 숫자의 덧셈 (2) - Python  (0) 2023.09.30
문자열 정렬하기 (2) - Python  (0) 2023.09.29
인덱스 바꾸기 - Python  (0) 2023.09.29
암호 해독 - Python  (0) 2023.09.29
n의 배수 고르기 - Python  (0) 2023.09.29