본문 바로가기

Backend/Algorithm

19. toLowerCase, charAt - 문자열 내 p와 y의 개수

 

 

 

 

코드

 

 

class Solution {
    boolean solution(String s) {
        boolean answer = true;
		
		int cntp = 0;
		int cnty = 0;
        
		s = s.toLowerCase();
		for(int i=0; i<s.length(); i++) {
			if(s.charAt(i) == 'p') 
				cntp++;
			if(s.charAt(i) == 'y')
				cnty++;
	
		}
		
		if(cntp == cnty) {
			answer = true;
		}else {
			answer = false;
		}
        return answer;
    }
}

 

 

 

 

접근방법