This commit is contained in:
Catalin Constantin Mititiuc 2024-06-22 10:56:03 -07:00
parent aacbf38cd6
commit 2f84141d14

View File

@ -531,8 +531,8 @@ function findScalar(arr) {
pos = 13; pos = 13;
neg = 13; neg = 13;
} else { } else {
pos = 7; pos = -7;
neg = 6; neg = -6;
} }
return arr.map(([mult, v]) => { return arr.map(([mult, v]) => {
@ -556,7 +556,7 @@ function findScalar(arr) {
// console.log(findScalar(mults)); // console.log(findScalar(mults));
const sheets = [[mapsheet2, mapsheet3]]; const sheets = [[mapsheet2], [mapsheet3]];
// const sheets = [[mapsheet2], [mapsheet1], [mapsheet3]]; // const sheets = [[mapsheet2], [mapsheet1], [mapsheet3]];
findScalar(findMult(sheets)).forEach(([vscalar, row]) => { findScalar(findMult(sheets)).forEach(([vscalar, row]) => {