프로그래머스/Lv. 1 - 자바
문자열 내 p와 y의 개수
EH헌
2024. 2. 7. 14:35
풀이
class Solution {
boolean solution(String s) {
boolean answer = true;
int c1 = 0;
int c2 = 0;
String[] s1 = s.split("");
for(int i=0; i<s1.length; i++){
if(s1[i].equals("p") || s1[i].equals("P")){
c1++;
}else if(s1[i].equals("y") || s1[i].equals("Y")){
c2++;
}
}
if(c1 != c2){
answer = false;
}
return answer;
}
}
프로그래머스
코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.
programmers.co.kr