매일 조금씩

프로그래머스 level1 : 문자열 내 p와 y의 개수 - Java 본문

알고리즘

프로그래머스 level1 : 문자열 내 p와 y의 개수 - Java

mezo 2023. 6. 2. 11:21
728x90
반응형

class Solution {
    boolean solution(String s) {
        boolean answer = true;
        String[] str = s.split("");
        int p = 0;
        int y = 0;
        for(int i=0; i<str.length; i++){
            if(str[i].equalsIgnoreCase("p")) p++;
            if(str[i].equalsIgnoreCase("y")) y++;
        }
        if(p != y) answer = false;
        
        return answer;
    }
}
728x90
반응형