문제
풀이
#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;
}
'Algorithm > Programers - C++' 카테고리의 다른 글
[프로그래머스]문자열 다루기 기본/isdigit (0) | 2022.02.14 |
---|---|
[프로그래머스]문자열 다루기 기본 / multiset, sort (0) | 2022.02.12 |
[프로그래머스]문자열 내 마음대로 정렬하기 / multimap (0) | 2022.02.11 |
[프로그래머스]스택/큐 - 주식가격 (0) | 2022.02.08 |
[프로그래머스] 같은 숫자는 싫어 / unique (0) | 2022.02.08 |