プログラマ-文字列内のpとyの数.
979 ワード
#include <string>
#include <iostream>
using namespace std;
bool solution(string s)
{
int CountP = 0;
int CountY = 0;
int size = s.size();
bool answer = true;
for(int i=0; i<size; i++)
{
if(s[i]=='p' || s[i]=='P')
{CountP++;}
if(s[i]=='y' || s[i]=='Y')
{CountY++;}
}
if(CountP==CountY)
{
return true;
}
else if(CountP==0 && CountY==0)
{
return true;
}
else{return false;}
}
コンテンツがありません.Reference
この問題について(プログラマ-文字列内のpとyの数.), 我々は、より多くの情報をここで見つけました https://velog.io/@imalive77/프로그래머스-문자열-내-p와-y의-개수テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol