Update sumAll-solution.js
This commit is contained in:
parent
5513be576a
commit
f5f6efae9b
|
@ -1,7 +1,7 @@
|
|||
const sumAll = function (min, max) {
|
||||
if (!Number.isInteger(min) || !Number.isInteger(max)) return "ERROR";
|
||||
if (min < 0 || max < 0) return "ERROR";
|
||||
if (min > max) {
|
||||
if (min > max) {
|
||||
const temp = min;
|
||||
min = max;
|
||||
max = temp;
|
||||
|
|
Loading…
Reference in New Issue