250x250
반응형
Notice
Recent Posts
Recent Comments
Link
N
(프로그래머스 JS)위클리 챌린지 5주차 본문
728x90
반응형
https://programmers.co.kr/learn/courses/30/lessons/84512
--설명 추가 예정--
function solution(word) {
const character = {
"A": 0,
"E": 1,
"I": 2,
"O": 3,
"U": 4,
};
const distance = [781 ,156, 31, 6, 1];
return word.split("").reduce((acc, value, index) => acc + (1 + (distance[index] * character[value])), 0);
}
728x90
반응형
'프로그래머스 알고리즘 > Weekly Challenge' 카테고리의 다른 글
(프로그래머스 JS)위클리 챌린지 6주차 (0) | 2021.09.07 |
---|---|
(프로그래머스 c++)위클리 챌린지 6주차 (0) | 2021.09.07 |
(프로그래머스 c++)위클리 챌린지 4주차 (0) | 2021.08.26 |
(프로그래머스 JS)위클리 챌린지 1주차 (0) | 2021.08.19 |
(프로그래머스 JS)위클리 챌린지 2주차 (0) | 2021.08.19 |