admin管理员组文章数量:1344694
I am trying to solve a simple problem: given a 2D array of integers (an array made of arrays made of integers) pute the sum of the integers.
For example, given this 2D array:
[
[1, 0, 0],
[1, 1, 0],
[1, 1, 1]
]
the output would be 6
.
Here's what I tried:
const array = [
[1, 0, 0],
[1, 1, 0],
[1, 1, 1]
]
const twoDsum = a => a.reduce( (r,x) => r + x.reduce( (s,y) => s + y) );
console.log(twoDsum(array));
I am trying to solve a simple problem: given a 2D array of integers (an array made of arrays made of integers) pute the sum of the integers.
For example, given this 2D array:
[
[1, 0, 0],
[1, 1, 0],
[1, 1, 1]
]
the output would be 6
.
Here's what I tried:
const array = [
[1, 0, 0],
[1, 1, 0],
[1, 1, 1]
]
const twoDsum = a => a.reduce( (r,x) => r + x.reduce( (s,y) => s + y) );
console.log(twoDsum(array));
As you can see I get three integers, which for me is nonsense.
I also tried the following code to figure out what was going on, but I don't get it
const array = [
[1, 0, 0],
[1, 1, 0],
[1, 1, 1]
]
// this function works as you can see from the logs
const sum = a => a.reduce( (r,x) => r + x );
for(let i = 0; i < array.length; i++) {
console.log(sum(array[i]));
}
// I don't get why this doesn't
const twoDsum = a => a.reduce( (r,x) => r + sum(x) );
console.log(twoDsum(array));
Share
Improve this question
asked Mar 27, 2021 at 23:04
anotherOneanotherOne
1,6411 gold badge13 silver badges25 bronze badges
1
-
1
a.reduce( (r,x) => r + sum(x) )
lacks its initial value0
, hence[1, 0, 0]
is used. The first iteration therefore performs[1, 0, 0] + sum([1, 1, 0])
, producing a string. Read the documentation. I’d suggest to always provide an initial value. – Sebastian Simon Commented Mar 27, 2021 at 23:15
7 Answers
Reset to default 5Make sure you provide the initialValue
(the second positional argument) explicity as 0
for the summation to work. Otherwise the first element will be used, which is [1,0,0]
, which will be converted to a string 1,0,0
:
A value to use as the first argument to the first call of the callback. If no initialValue is supplied, the first element in the array will be used as the initial accumulator value
See working example here:
const array = [
[1, 0, 0],
[1, 1, 0],
[1, 1, 1]
]
const twoDsum = a => a.reduce((r, x) => r + x.reduce((s, y) => s + y, 0), 0);
console.log(twoDsum(array));
If you are just trying to get the sum then why not just flatten the array first?
const arr = [
[1, 0, 0],
[1, 1, 0],
[1, 1, 1]
]
const flatArr = arr.flat()
flatArr
should now be [1, 0, 0, 1, 1, 0, 1, 1, 1]
you should now be able to use the normal reduce
you'd expect to use
const sum = flatArr.reduce((acc, value) => acc += value, 0);
sum
should now be 6
I am old school, so I would just write a couple of loops. Super easy to code, works the first time with no debugging, and I think it's the easiest solution to understand:
const twoDsum = matrix => {
let sum = 0;
for( const row of matrix ) {
for( const cell of row ) {
sum += cell;
}
}
return sum;
};
console.log(
twoDsum(
[
[ 1, 0, 0 ],
[ 1, 1, 0 ],
[ 1, 1, 1 ]
]
)
);
You can instead use .flat()
and use the original equation.
const array = [
[1, 0, 0],
[1, 1, 0],
[1, 1, 1]
]
// this function works as you can see from the logs
const sum = a => a.reduce( (r,x) => r + x );
for(let i = 0; i < array.length; i++) {
console.log(sum(array[i]));
}
// I don't get why this doesn't
const twoDsum = a => a.flat().reduce( (r,x) => r + x );
console.log(twoDsum(array));
I would suggest instead of doing the reduce twice just use flat method first:
const array = [
[1, 0, 0],
[1, 1, 0],
[1, 1, 1]
]
const twoDsum = a => a.flat().reduce((acc,val) => acc + val);
console.log(twoDsum(array));
You could take a recursive approach and check the item if it is an array.
const
addArray = (s, v) => s + (Array.isArray(v) ? v.reduce(addArray, 0) : v),
data = [[1, 0, 0], [1, 1, 0], [1, 1, 1]],
sum = data.reduce(addArray, 0);
console.log(sum);
Using Array.prototype.forEach()
.
const array = [
[1, 0, 0],
[1, 1, 0],
[1, 1, 1],
];
const twoDsum = (a) => {
let total = 0;
a.forEach(arr => {
arr.forEach(num => {
total += num;
});
});
return total
};
console.log(twoDsum(array));
本文标签: Computing sum of a 2D array in JavaScriptStack Overflow
版权声明:本文标题:Computing sum of a 2D array in JavaScript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743698667a2523938.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论