공부기록/프로그래머스

[프로그래머스] 문자열 내 p와 y의 개수

메델 2023. 8. 7. 10:53
class Solution {
    boolean solution(String s) {
        
        s = s.toLowerCase();
        
        int pCount = 0;
        int yCount = 0;
        
        for(int i = 0; i < s.length(); i++){
            if('p' == s.charAt(i)){
                pCount++;
            }
            if('y' == s.charAt(i)){
                yCount++;
            }
        }
        
        if(pCount == yCount){
            return true;
        } else {
            return false;
        }
        
    }
}