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

Sorbet·2021년 4월 16일
0

코테

목록 보기
14/35

https://programmers.co.kr/learn/courses/30/lessons/12916?language=java

class Solution {
    boolean solution(String s) {
        boolean answer = true;
        char[] arr = s.toCharArray();
        int cp=0,cy = 0;
        for(int i=0 ; i<arr.length ; i++) {
            if(arr[i] == 'p' || arr[i] == 'P') {
                cp++;
            }
            if(arr[i] == 'y' || arr[i] == 'Y') {
                cy++;
            }
        }
        // [실행] 버튼을 누르면 출력 값을 볼 수 있습니다.
        if(cy == cp) {
            answer = true
        }
        else {
            answer =false;
        }
        return answer;
    }
}
profile
Sorbet is good...!

0개의 댓글