JAVA/Algorithm

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

nang. 2020. 12. 1. 22:53
반응형
SMALL

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

 

코딩테스트 연습 - 문자열 내 p와 y의 개수

대문자와 소문자가 섞여있는 문자열 s가 주어집니다. s에 'p'의 개수와 'y'의 개수를 비교해 같으면 True, 다르면 False를 return 하는 solution를 완성하세요. 'p', 'y' 모두 하나도 없는 경우는 항상 True를

programmers.co.kr

 

  • toCharArray()
    • 문자열을 char[]에 한글자씩 담아주는 함수

 

class Solution {
    boolean solution(String s) {
        boolean answer = true;

        int pCount = 0;
        int yCount = 0;
        char[] temp = s.toCharArray();
        
        for(int i = 0; i < temp.length; i++) {
            if(temp[i] == 'p' || temp[i] == 'P') {
                pCount++;
            } else if(temp[i] == 'y' || temp[i] == 'Y') {
                yCount++;
            }
        }
        
        if(pCount == yCount) {
            return true;
        } else {
            return false;
        }
    }
}
반응형
LIST