#include <string>
#include <iostream>
using namespace std;
bool solution(string s)
{
bool answer = true;
int Pcnt = 0;
int Ycnt = 0;
for(int i =0; i < s.size(); i++) {
if(s[i] == 'p' || s[i] == 'P') {
Pcnt++;
}
if(s[i] == 'y' || s[i] == 'Y') {
Ycnt++;
}
}
if(Pcnt == 0 && Ycnt == 0) {
answer = true;
} if(Pcnt == Ycnt) answer = true;
else answer = false;
return answer;
}
level 1은 어느정도 풀 수 있으니 이제 level 2를 도전해봐야겠다.
'[알고리즘] 문제풀이 연습' 카테고리의 다른 글
[백준] 15685 드래곤커브 : 시뮬레이션 (0) | 2019.11.15 |
---|---|
[프로그래머스] 주식가격 : level 2 (0) | 2019.11.05 |
[프로그래머스] 소수찾기 : level 1 (에라토스테네스의 체) (0) | 2019.11.05 |
[프로그래머스] 서울에서 김서방 찾기 int to string : level 1 (0) | 2019.11.05 |
[프로그래머스] 같은 숫자는 싫어 level1 (0) | 2019.11.04 |