STUDY/Algorithm

[프로그래머스] LEVEL1 문자열 내 p와 y의 개수, python3

sinawi95 2019. 10. 16. 11:09
728x90

import collections
def solution(s):
    ss=collections.Counter(list(s.lower()))
    if ss['p']==ss['y']:
        answer = True
    else:
        answer = False
    return answer