문자열 내 p와 y의 개수 Lv. 1

박영준·2022년 11월 21일
0

코딩테스트

목록 보기
16/300
class Solution {
    boolean solution(String s) {
        boolean answer = true;

        return answer;
    }
}

해결법

방법 1

class Solution {
    boolean solution(String s) {
        boolean answer = false;
        
        int count = 0;
        
        s = s.toLowerCase();
        
        for (int i = 0; i < s.length(); i++) {
            if (s.charAt(i) == 'p') {
                count++;
            } else if (s.charAt(i) == 'y') {
                count--;
            }
        }
        
        if (count == 0) {
            answer = true;
        } 

        return answer;
    }
}
  • toLowerCase() 모든 문자열을 소문자로 변환
  • toUpperCase() 모든 문자열을 대문자로 변환

문자열 내 p와 y의 개수 Lv. 1

profile
개발자로 거듭나기!

0개의 댓글