function solution(s){
let answer = true;
let count_p = 0, count_y = 0;
for(let i = 0; i < s.length; i++){
s[i].toLowerCase() === 'p' && count_p++;
s[i].toLowerCase() === 'y' && count_y++;
}
count_p == count_y ?
answer = true:
count_p == 0 && count_y == 0 ?
answer = true: answer = false
return answer;
}
성공