<html>
<head>
<meta charset="UTF-8" />
<title>출력결과</title>
</head>
<body>
<script>
function solution(arr) {
let answer = arr.slice();
answer.forEach((e, i) =>
e === 1 && i !== 0 ? (answer[i] += answer[i - 1]) : e
);
return answer.reduce((a, b) => a + b, 0);
}
let arr = [1, 0, 1, 1, 1, 0, 0, 1, 1, 0];
console.log(solution(arr));
</script>
</body>
</html>
점수 계산 문제 다른 방식으로 풀어봤습니다
박세진
작성일
22.06.12 16:16
조회수
179
댓글 0