102 - Highest Scoring Word
Q.
Description:
Given a string of words, you need to find the highest scoring word.
Each letter of a word scores points according to its position in the alphabet: a = 1, b = 2, c = 3 etc.
You need to return the highest scoring word as a string.
If two words score the same, return the word that appears earliest in the original string.
All letters will be lowercase and all inputs will be valid.
A)
function high(x){
// 'a' 의 charCode는 97 z는 122
let toArr = x.split(' ')
let resArr = []
let sum = 0;
let toArr2 = toArr.map(el => el.split(''))
for (let arr of toArr2) {
for (let i = 0; i < arr.length; i++) {
sum += arr[i].charCodeAt() - 96
}
resArr.push(sum)
sum = 0;
}
return toArr[resArr.indexOf(Math.max(...resArr))]
}
Author And Source
이 문제에 관하여(102 - Highest Scoring Word), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@developerjhp/알고리즘-102-Highest-Scoring-Word
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
function high(x){
// 'a' 의 charCode는 97 z는 122
let toArr = x.split(' ')
let resArr = []
let sum = 0;
let toArr2 = toArr.map(el => el.split(''))
for (let arr of toArr2) {
for (let i = 0; i < arr.length; i++) {
sum += arr[i].charCodeAt() - 96
}
resArr.push(sum)
sum = 0;
}
return toArr[resArr.indexOf(Math.max(...resArr))]
}
Author And Source
이 문제에 관하여(102 - Highest Scoring Word), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@developerjhp/알고리즘-102-Highest-Scoring-Word저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)