반응형
SMALL
https://programmers.co.kr/learn/courses/30/lessons/12916?language=java
- toCharArray()
- 문자열을 char[]에 한글자씩 담아주는 함수
class Solution {
boolean solution(String s) {
boolean answer = true;
int pCount = 0;
int yCount = 0;
char[] temp = s.toCharArray();
for(int i = 0; i < temp.length; i++) {
if(temp[i] == 'p' || temp[i] == 'P') {
pCount++;
} else if(temp[i] == 'y' || temp[i] == 'Y') {
yCount++;
}
}
if(pCount == yCount) {
return true;
} else {
return false;
}
}
}
반응형
LIST
'JAVA > Algorithm' 카테고리의 다른 글
[프로그래머스/java] 문자열 다루기 기본 (isDigit() - 숫자/문자 구분) (0) | 2020.12.01 |
---|---|
[프로그래머스/java] 문자열 내림차순으로 배치하기 (0) | 2020.12.01 |
[프로그래머스/java] 문자열 내 마음대로 정렬하기 (compareTo, charAt) (0) | 2020.10.25 |
[프로그래머스/java] 두 정수 사이의 합 (0) | 2020.10.24 |
[프로그래머스/java] 나누어 떨어지는 숫자 배열 (0) | 2020.10.24 |