본문 바로가기

Algorithm/Programers - C++

[프로그래머스]문자열 내 p와 y의 개수

문제

풀이

#include <string>
#include <iostream>
#include <cstring>
using namespace std;

bool solution(string s)
{
    int answer = 0;
    for(int i=0; i<s.size(); i++){
        if(tolower(s[i]) == 'p') answer++;
        else if(tolower(s[i]) == 'y') answer--;
    }
    return answer!=0?false:true;
}