Designer PDF 뷰어 설명 - 솔루션 | 자바스크립트

3643 단어
function designerPdfViewer(h, word) {
  let max = 0;
  const wordSize = word.length;
  for (let i = 0; i < wordSize; i ++) {
    const current = word.charCodeAt(i);
    if (h[current-97] > max) max = h[current-97];
  }
  return max * wordSize;
}




designerPdfViewer([1, 3, 1, 3, 1, 4, 1, 3, 2, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 7]
, 'zaba')

Problem

좋은 웹페이지 즐겨찾기