Update sumAll-solution.js

Change the swapping algorithm to the standard way of swapping using array restructuring.
This commit is contained in:
cats256 2023-07-03 22:52:46 -05:00 committed by GitHub
parent 5a7cd9b162
commit 415ff48c20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 5 deletions

View File

@ -1,11 +1,8 @@
const sumAll = function (min, max) { const sumAll = function (min, max) {
if (!Number.isInteger(min) || !Number.isInteger(max)) return "ERROR"; if (!Number.isInteger(min) || !Number.isInteger(max)) return "ERROR";
if (min < 0 || max < 0) return "ERROR"; if (min < 0 || max < 0) return "ERROR";
if (min > max) { if (min > max) [min, max] = [max, min];
const temp = min;
min = max;
max = temp;
}
let sum = 0; let sum = 0;
for (let i = min; i < max + 1; i++) { for (let i = min; i < max + 1; i++) {
sum += i; sum += i;