#include <string>
#include <iostream>
using namespace std;
bool solution(string s)
{
bool answer = true;
int pCnt = 0;
int sCnt = 0;
if( false == ( s.length() <= 50) ) answer = false;
for(int i = 0; i < s.length(); ++i)
{
if( 'p' == s[i] || 'P' == s[i] ) pCnt++;
else if( 'y' == s[i] || 'Y' == s[i]) sCnt++;
}
if( pCnt == sCnt ) answer = true;
else answer = false;
return answer;
}
'프로그래밍 > 알고리즘 문제 풀이' 카테고리의 다른 글
백준(Baekjoon Online Judge, BOJ) 1003번 문제 코드 (0) | 2019.05.08 |
---|