https://school.programmers.co.kr/learn/courses/30/lessons/12916
#include <string>
using namespace std;
bool solution(const string s)
{
bool answer = false;
int count = 0;
for (auto c : s)
{
if ('p' == c || 'P' == c) count++;
else if ('y' == c || 'Y' == c) count--;
else continue;
}
if (count == 0 && s.size() > 0) answer = true;
return answer;
}
'코딩테스트 > 문제풀이' 카테고리의 다른 글
[220914] Level_1 최대공약수와 최소공배수 (0) | 2022.09.14 |
---|---|
[220830] Level_ 1 나누어 떨어지는 숫자 배열 (0) | 2022.08.30 |
[220823] Level_ 1 예산 (0) | 2022.08.23 |
[220811] Level_ 1 같은 숫자는 싫어! (0) | 2022.08.11 |
[220811] Level_ 1 음양 더하기 (0) | 2022.08.11 |