본문 바로가기
알고리즘 문제풀이/Programmers - 자바

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

by 올리브영 2023. 3. 25.
728x90
반응형
class Solution {
    boolean solution(String s) {
        boolean answer = true;
        s = s.toUpperCase();
        String[] ars = s.split("");
        int countP = 0;
        int countY = 0;
        for(String a : ars){
            if(a.equals("P")){
                countP++;
            }
            else if(a.equals("Y")){
                countY++;
            }
        }
        
        if(countP!=countY){
            answer=false;
        }

        return answer;
    }
}
728x90
반응형