728x90
import collections
def solution(s):
ss=collections.Counter(list(s.lower()))
if ss['p']==ss['y']:
answer = True
else:
answer = False
return answer
'STUDY > Algorithm' 카테고리의 다른 글
[프로그래머스] LEVEL1 서울에서 김서방 찾기, python3 (0) | 2019.10.17 |
---|---|
[프로그래머스] LEVEL1 문자열 내림차순으로 배치하기, python3 (0) | 2019.10.16 |
[프로그래머스] LEVEL 1 문자열 내 마음대로 정렬하기, python3 (0) | 2019.10.16 |
[프로그래머스] LEVEL1 나누어떨어지는 숫자 배열, python3 (0) | 2019.10.15 |
[프로그래머스] LEVEL1 같은숫자는 싫어, python3 (0) | 2019.10.15 |