rueki
프로그래머스 . 문자열 내 p와 y의 개수(Lv1) 본문
728x90
반응형
- 파이썬
def solution(s):
answer = True
s = s.lower()
sc = s.count('p')
pc = s.count('y')
if sc == pc:
answer = True
else:
answer = False
return answer
- C++
#include <string>
#include <iostream>
using namespace std;
bool solution(string s)
{
bool answer = true;
int pc = 0;
int yc = 0;
for(int i=0;i < s.size();i++)
{
if(s[i] == 'p' || s[i] == 'P')
{
pc ++;
}
else if(s[i] == 'y' || s[i] == 'Y')
{
yc ++;
}
}
if(pc != yc)
{
answer = false;
}
return answer;
}
728x90
반응형
'프로그래머스 연습' 카테고리의 다른 글
프로그래머스 LV2. 짝지어 제거하기 (0) | 2022.10.06 |
---|---|
프로그래머스 Lv1. 모의고사(완전탐색) (0) | 2022.10.06 |
프로그래머스 (LV2). 프린터 (0) | 2022.10.06 |
프로그래머스 LV2. 올바른 괄호(스택) (0) | 2022.10.06 |
프로그래머스(Lv2). 구명보트(Greedy) (0) | 2022.10.05 |
Comments