대문자와 소문자가 섞여있는 문자열 s가 주어집니다. s에 'p'의 개수와 'y'의 개수를 비교해 같으면 True, 다르면 False를 return 하는 solution를 완성하세요. 'p', 'y' 모두 하나도 없는 경우는 항상 True를 리턴합니다. 단, 개수를 비교할 때 대문자와 소문자는 구별하지 않습니다.
예를 들어 s가 "pPoooyY"면 true를 return하고 "Pyy"라면 false를 return합니다.
toUpperCase()
toLowerCase()
includes
inclides
메서드를 사용하여 문자열 내에 p와 y가 모두 없을 경우를 처리한다.function solution(s) {
let answer = '';
const pList = [];
const yList = [];
if (s.length <= 50) {
const lowerLetter = s.toLowerCase();
if (!lowerLetter.includes('p') && !lowerLetter.includes('y') {
return true;
}
for (let i = 0; i < lowerLetter.length; i++) {
if (lowerLetter[i] === 'p') {
pList.push('p');
} else if (lowerLetter[i] === 'y') {
yList.push('y');
}
}
if (pList.length === yList.length) {
answer = true;
} else if (pList.length !== yList.length) {
answer = false;
}
}
return answer;
}
문제 출처: 프로그래머스