꾸준한 개발자

계속적인 성장을 추구하는 개발자입니다. 꾸준함을 추구합니다.

계속 쓰는 개발 노트

JAVASCRIPT/자바스크립트 알고리즘

[프로그래머스 Lv.1] 문자열 내 p와 y의 개수

gold_dragon 2021. 2. 1. 19:53
function solution(s) {
  if (!s) return true;

  let cntOfP = 0;
  let cntOfY = 0;

  [...s.toUpperCase()].forEach(word => {
    word === 'P' ? ++cntOfP : word === 'Y' ? ++cntOfY : null;
  });

  return cntOfP === cntOfY ? true : false;
}