문자열 내 p와 y의 개수
문제 링크 : (https://programmers.co.kr/learn/courses/30/lessons/12916)
풀이
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <string>
#include <iostream>
using namespace std;
bool solution(string s)
{
bool answer = true;
int pcnt =0,ycnt =0;
for(int i=0;i<(int)s.length();i++){
if(s[i]=='p' || s[i]=='P')
pcnt ++;
else if(s[i]=='y' || s[i]=='Y')
ycnt ++;
else{}
}
if(pcnt == ycnt)ㄴ
return true;
else
return false;
}