더보기
#include <string>
#include <iostream>
using namespace std;
bool solution(string s)
{
bool answer = true;
int pCheck, yCheck = 0;
// ** 초기화 필수
for(int i = 0; i < s.length(); i++){
if(s.at(i) == 'p' || s.at(i) == 'P'){
pCheck += 1;
}
if(s.at(i) == 'Y' || s.at(i) == 'y'){
yCheck += 1;
}
}
if(pCheck != yCheck){
answer = false;
}else if(pCheck == yCheck){
answer = true;
}
return answer;
}
>> 와.... 초기화 안 해서 틀린 거였음
🌱 정답코드
'OLD_알고리즘 > Programmers - 알고리즘' 카테고리의 다른 글
Programmers ] Level 1 - 가운데 글자 가져오기 (0) | 2021.01.10 |
---|---|
Programmers ] Level 1 - 나누어 떨어지는 숫자 배열 (0) | 2021.01.10 |
Programmers ] Level 1 - 두 정수 사이의 합 (0) | 2021.01.10 |
Programmers ] Level 1 - 서울에서 김서방 찾기 (0) | 2021.01.10 |
Programmers ] Level 1 - 문자열 내림차순으로 배치하기 (0) | 2021.01.10 |
댓글