내 코드
class Solution {
boolean solution(String s) {
boolean answer = true;
int pCnt = 0;
int yCnt = 0;
char c;
for (int i = 0; i < s.length(); i ++) {
c = s.charAt(i);
if (c == 'p' || c == 'P') {
pCnt++;
} else if (c == 'y' || c == 'Y') {
yCnt++;
}
}
answer = pCnt == yCnt ? true : false;
return answer;
}
}
다른 방법 - s.toLowerCase();
'프로그래머스' 카테고리의 다른 글
프로그래머스 - x만큼 간격이 있는 n개의 숫자 (0) | 2019.01.08 |
---|---|
프로그래머스 - 나누어 떨어지는 숫자 배열 (0) | 2019.01.08 |
프로그래머스 - 가운데 글자 가져오기 (0) | 2019.01.08 |
프로그래머스 - 문자열을 정수로 바꾸기 (0) | 2019.01.08 |
프로그래머스 - 시저 암호 (0) | 2019.01.08 |