쌓고 쌓다
[프로그래머스] 문자열 내 p와 y의 개수 C++ 풀이 본문
https://school.programmers.co.kr/learn/courses/30/lessons/12916?language=cpp
전체 코드
#include <string>
#include <iostream>
using namespace std;
bool solution(string s)
{
bool answer = true;
int Pp=0;
int Yy=0;
for(int i=0;i<s.length();i++)
{
if(s[i]=='p'||s[i]=='P')
Pp++;
else if(s[i]=='Y'||s[i]=='y')
Yy++;
}
if(Pp==Yy)
answer=true;
else
answer=false;
return answer;
}
간단히 개수를 세서 비교해주면 됩니다.
'알고리즘 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 문자열 다루기 기본 C++ 풀이 (0) | 2022.07.06 |
---|---|
[프로그래머스] 문자열 내림차순으로 배치하기 C++ 풀이 (0) | 2022.07.05 |
[프로그래머스] 1차 다트 게임 C++ 풀이 (0) | 2022.07.05 |
[프로그래머스] 두 정수 사이의 합 C++ 풀이 (0) | 2022.07.05 |
[프로그래머스] 나누어 떨어지는 숫자 배열 C++ 풀이 (0) | 2022.07.05 |
Comments