[20211004]알고리즘 풀이
·
알고리즘 풀이
한 개의 문자열을 입력받아 해당 문자열에 알파벳 대문자가 몇 개 있는지 알아내는 프로그램 을 작성하세요. function solution(s){ let answer=0; for (let i of s) { const unitCode = i.charCodeAt(0) if (unitCode >= 60 && unitCode = 97 && i.charCodeAt()