728x90
https://school.programmers.co.kr/learn/courses/30/lessons/12916
문제)대문자와 소문자가 섞여있는 문자열 s가 주어집니다. s에 'p'의 개수와 'y'의 개수를 비교해 같으면 True, 다르면 False를 return 하는 solution를 완성하세요. 'p', 'y' 모두 하나도 없는 경우는 항상 True를 리턴합니다. 단, 개수를 비교할 때 대문자와 소문자는 구별하지 않습니다. 예를 들어 s가 "pPoooyY"면 true를 return하고 "Pyy"라면 false를 return합니다.
풀이)
class Solution {
boolean solution(String s) {
boolean answer = true;
s= s.toLowerCase();
int cntp=0;
int cnty=0;
for(int i=0; i<s.length(); i++){
if(s.substring(i,i+1).equals("p")){
cntp++;
}else if(s.substring(i,i+1).equals("y")){
cnty++;
}
}
System.out.println(s);
System.out.println(cntp+" "+cnty);
answer = cntp==cnty?true:false;
return answer;
}
}
728x90
'프로그래밍 > Java(자바)' 카테고리의 다른 글
[프로그래머스] 제일 작은 수 제거하기 --java (0) | 2024.05.23 |
---|---|
[프로그래머스] 핸드폰 번호 가리기 --java (0) | 2024.05.22 |
[프로그래머스] 평균 구하기 --java (0) | 2024.05.22 |
[프로그래머스] 짝수와 홀수 --java (0) | 2024.05.22 |
[프로그래머스] 자릿수 더하기 --java (0) | 2024.05.22 |