- 학습 관련 질문을 남겨주세요. 상세히 작성하면 더 좋아요!
- 먼저 유사한 질문이 있었는지 검색해보세요.
- 서로 예의를 지키며 존<html>
<head>
<meta charset="UTF-8">
<title>출력결과</title>
</head>
<body>
<script>
function solution(m, arr){
let answer=0;
for(let i=0; i<arr.length; i++){
let sum=0;
let j=i;
while(sum<=m){
sum += arr[j++];
if(sum == m) answer++;
}
}
return answer;
}
let a=[1, 6, 1, 3, 1, 1, 1, 2];
console.log(solution(6, a));
</script>
</body>
</html>
이렇게 짰는데 좋은코드인가요?