-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy path_294.java
33 lines (30 loc) · 1.11 KB
/
_294.java
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
package com.fishercoder.solutions.firstthousand;
import java.util.ArrayList;
import java.util.List;
public class _294 {
public static class Solution1 {
public boolean canWin(String s) {
List<String> res = new ArrayList<>();
char[] charArray = s.toCharArray();
for (int i = 0; i < s.length() - 1; i++) {
if (charArray[i] == '+' && charArray[i + 1] == '+') {
// change these two bits to '-'
charArray[i] = '-';
charArray[i + 1] = '-';
res.add(String.valueOf(charArray));
// change these two bits back to '+' for its next move
charArray[i] = '+';
charArray[i + 1] = '+';
}
}
/*The above part is the same of Flip Game I.
* The only added part is the following piece of logic (so-called backtracking.)*/
for (String str : res) {
if (!canWin(str)) {
return true;
}
}
return false;
}
}
}