-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathArrayAdditionI.js
74 lines (62 loc) · 1.77 KB
/
ArrayAdditionI.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/* Using the JavaScript language, have the function ArrayAdditionI(arr)
take the array of numbers stored in arr and return the string true
if any combination of numbers in the array can be added up to equal the
largest number in the array, otherwise return the string false.
For example: if arr contains [4, 6, 23, 10, 1, 3] the output should
return true because 4 + 6 + 10 + 3 = 23. The array will not be empty,
will not contain all the same elements, and may contain negative numbers. */
function ArrayAdditionI(arr) {
var status = false;
var sortedArray = arr.sort(function(a,b){return a-b});
var largestIndex = parseInt(sortedArray.length) - 1;
var findLargestNum = function(arrSorted){
return arrSorted[largestIndex];
};
var largestNum = findLargestNum(sortedArray);
var mathArray = sortedArray.slice(0);
var count = 0;
var getDiffs = function(arr){
if(!status){
arr.pop();
arr.reverse();
if (count > 1){
arr.pop();
}
var max = largestNum;
for (i = arr.length - 1 ; i > -1; i-- ){
max -= arr[i];
if (max == 0){
status = true;
} else if(max < 0) {
max += arr[i];
i--;
}
}
if (!status){
count++;
return max;
} else {
return status;
}
}
}
while (!status && count < sortedArray.length - 1){
mathArray = sortedArray.slice(0);
getDiffs(mathArray);
}
for (var splice = 0; splice < sortedArray.length - 1; splice++){
if (!status){
count = 0;
mathArray = sortedArray.slice(0);
mathArray.splice(splice,1);
getDiffs(mathArray);
}
}
var theDiffs = getDiffs(mathArray);
return status;
}
//ArrayAdditionI([3,5,7,9,43,23,35,10,23,23,46,12]);
//ArrayAdditionI([3,5,-1,8,12]);
//ArrayAdditionI([14,10,3,2,2]);
// ArrayAdditionI([5,7,16,1,2]);
//ArrayAdditionI([10,20,30,40,100]);