def solution(s):
small_p_count = s.count('p') # p 개수
big_p_count = s.count('P') # P 개수
small_y_count = s.count('y') # y 개수
big_y_count = s.count('Y') # Y 개수
if (small_p_count + big_p_count) == (small_y_count + big_y_count): # 비교
return True
else:
return False
count()
- 해당 문자열이 몇번 사용되었는지 개수 파악
- count 함수 안에 문자열을 넣어주면, 해당 문자열이 사용된 횟수를 리턴한다
'코테 준비 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] Level 1. 문자열 내림차순으로 배치하기 (0) | 2022.02.07 |
---|---|
[프로그래머스] Level 1. 서울에서 김서방 찾기 (0) | 2022.02.04 |
[프로그래머스] Level 1. 문자열을 정수로 바꾸기 (0) | 2022.02.04 |
[프로그래머스] Level 1. 이상한 문자 만들기 (0) | 2022.01.28 |
[프로그래머스] Level 1. 자릿수 더하기 (0) | 2022.01.28 |
댓글