0679. 24 Game
Description
**Input:** cards = [4,1,8,7]
**Output:** true
**Explanation:** (8-4) * (7-1) = 24**Input:** cards = [1,2,1,2]
**Output:** falseac
Last updated
**Input:** cards = [4,1,8,7]
**Output:** true
**Explanation:** (8-4) * (7-1) = 24**Input:** cards = [1,2,1,2]
**Output:** falseLast updated
class Solution {
public boolean judgePoint24(int[] nums) {
// edge cases
List<Double> list = new ArrayList<>();
for (int n : nums) list.add((double) n);
return dfs(list);
}
private boolean dfs(List<Double> list) {
int n = list.size();
if (n == 1) return Math.abs(list.get(0) - 24.0) < 0.0001;
// pick 2 numbers, calculate a new number
for (int i = 0; i < n-1; i++) {
for (int j = i + 1; j < n; j++) {
List<Double> newVal = cal(list.get(i), list.get(j));
// new list, pick remaining number from old list
List<Double> newList = new ArrayList<>();
for (int k = 0; k < n; k++) {
if (k != i && k != j) newList.add(list.get(k));
}
// backtracking, try new values
int lastIdx = newList.size();
for (double d : newVal) {
newList.add(d);
if (dfs(newList)) return true;
newList.remove(lastIdx);
}
}
}
return false;
}
private List<Double> cal(double n1, double n2) {
List<Double> res = new ArrayList<>();
res.add(n1 + n2);
res.add(n1 - n2);
res.add(n1 * n2);
res.add(n1 / n2);
res.add(n2 - n1);
res.add(n2 / n1);
return res;
}
}
/*
1) pick 2 numbers, calculate a new number put back to array. 2) repeat, until only one number in array, check if it's 24.
*/