Algorithm/programers
[Lv.1] 문자열 내 p와 y의 개수
casylm
2022. 9. 22. 14:18
code
def solution(s):
answer = False
# 전체 대문자로
s = s.upper()
c1,c2 = 0,0
for i in s:
if i =='P':
c1 +=1
elif i == 'Y':
c2 +=1
# 개수 체크
if c1 == c2:
answer = True
return answer