문자열 내 p와 y의 갯수
·
코딩테스트/프로그래머스 Lv1
class Solution { boolean solution(String s) { boolean answer = true; int pcount = 0; int ccount = 0; for(int i = 0; i < s.length(); i++){ if(s.toUpperCase().charAt(i) == 80){ pcount++; }else if(s.toUpperCase().charAt(i) == 89){ ccount++; } } if(pcount != ccount){ answer = false; } return answer; } } int pcount = 0;와 int ccount = 0; 'P'와 'Y'의 갯수를 세기 위한 변수 pcount와 ccount를 선언하고 0으로 초기화한다. s.toUpper..