프로그래머스 Lv.1 문자열 내 p와 y의 개수개발자가 되기까지 (2023.08.16~2024.04.15)/[Algorithm] Programmers ver.Java2023. 12. 4. 22:02
Table of Contents
<Solution>
class Solution {
boolean solution(String s) {
boolean answer = true;
s = s.toUpperCase();
int p = 0;
int y = 0;
for(int i = 0; i < s.length(); i++) {
char c = s.charAt(i);
if( c == 'P') {
p++;
}
if ( c == 'Y') {
y++;
}
}
if( p != y) {
answer = false;
}
// [실행] 버튼을 누르면 출력 값을 볼 수 있습니다.
System.out.println(answer);
return answer;
}
}
728x90
@rlozlr :: 얼렁뚱땅 개발자
얼렁뚱땅 주니어 개발자
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!