Roel Notebook

[Java] 문자열 내 p와 y의 개수

by Roel Downey
728x90
반응형

문자열 내 p와 y의 개수

 

 

문제 

- 문제 링크: 프로그래머스

 

 

 

풀이

class Solution {
    boolean solution(String s) {
        boolean answer = true;
        
        int result = 0;
        s = s.toUpperCase();
        
        for(int index = 0 ; index < s.length();index++) {
            if (s.charAt(index) == 'P') {
                result++;
            }else if(s.charAt(index) == 'Y') {
                result--;
            }
        }

        if (result != 0) {
            answer = false;
        }
        return answer;
    }
}

 

728x90
반응형

블로그의 정보

What doing?

Roel Downey

활동하기