count
함수를 이용해 문자열 내의 특정 요소 개수를 확인하였다.if else문
을 사용해 조건에 맞으면 True
를, 아니면 False
를 반환하도록 작성하였다.# programmers, phase1 : 문자열 내 p와 y의 개수, python
def solution(s):
return True if s.count('p') + s.count('P') == s.count('y') + s.count('Y') else False
# - , 임형섭 , Minje Jeon , temp , - 외 81 명 님 코드 참고
def numPY(s):
return s.lower().count('p') == s.lower().count('y')
https://programmers.co.kr/learn/courses/30/lessons/12916
github