예를 들어 s가 "pPoooyY"면 true를 return하고 "Pyy"라면 false를 return합니다.
class Solution {
boolean solution(String s) {
s = s.toLowerCase();
int countOfP = 0;
int countOfY = 0;
for(int i = 0; i < s.length(); i++) {
char ch = s.charAt(i);
if(ch == 'p') {
countOfP++;
}
if(ch == 'y') {
countOfY++;
}
}
return countOfP == countOfY;
}
}
class Solution {
boolean solution(String s) {
s = s.toUpperCase();
return s.chars().filter( e -> 'P'== e).count() == s.chars().filter( e -> 'Y'== e).count();
}
}