Post

문자열 내 p와 y의 개수

https://school.programmers.co.kr/learn/courses/30/lessons/12916

📔 문제 설명

대문자와 소문자가 섞여있는 문자열 s가 주어집니다. s에 ‘p’의 개수와 ‘y’의 개수를 비교해 같으면 True, 다르면 False를 return 하는 solution를 완성하세요. ‘p’, ‘y’ 모두 하나도 없는 경우는 항상 True를 리턴합니다. 단, 개수를 비교할 때 대문자와 소문자는 구별하지 않습니다.

예를 들어 s가 “pPoooyY”면 true를 return하고 “Pyy”라면 false를 return합니다.

💡 입출력 예

sresult
“pPoooyY”true
“Pyy”false

💻내가 작성한 코드

  • sqrt로 제곱근 구하기
  • isInteger로 정수 여부 판별하기
1
2
3
4
5
6
7
8
function solution(s) {
  const strArr = s.toUpperCase().split("");

  const pLength = strArr.filter((str) => str === "P").length;
  const yLength = strArr.filter((str) => str === "Y").length;

  return pLength === yLength;
}

💻다른 사람 코드

match()와 정규표현식을 통해서 길이 비교

1
2
3
function solution(s) {
  return s.match(/p/gi).length == s.match(/y/gi).length;
}
This post is licensed under CC BY 4.0 by the author.