-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path241.js
32 lines (32 loc) · 953 Bytes
/
241.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
var diffWaysToCompute = function(input) {
let ret=[];
for(let lbound=1;lbound<=input.length-1;lbound++){
if(input[lbound]!=='+'&&input[lbound]!=='-'&&input[lbound]!=='*'){
continue;
}
let operator = input[lbound];
let left = diffWaysToCompute(input.slice(0,lbound));
let right = diffWaysToCompute(input.slice(lbound+1));
left.forEach((l)=>{
right.forEach((r)=>{
let res;
switch(operator){
case '+':
res = l+r;
break;
case '-':
res = l-r;
break;
case '*':
res = l*r;
break;
}
ret.push(res);
})
})
}
if(ret.length===0){
return [parseInt(input)];
}
return ret;
};