7의 개수 - Python
2023. 9. 30. 03:07ㆍ공부/📝 프로그래머스
def solution(array):
return sum([str(item).count("7") for item in array])
# Test Cases
print(solution([7, 77, 17]))
print(solution([10, 29]))
위와 같이 풀었습니다.
def solution(array):
return str(array).count('7')
그런데 그냥 이렇게 하면 되었네요.
'공부 > 📝 프로그래머스' 카테고리의 다른 글
문자열 계산하기 - Python (0) | 2023.09.30 |
---|---|
영어가 싫어요 - Python (0) | 2023.09.30 |
이진수 더하기 - Python (0) | 2023.09.30 |
한 번만 등장한 문자 - Python (0) | 2023.09.30 |
가까운 수 - Pyhon (0) | 2023.09.30 |