刷 July-31-2019 换成只能从左边或者右边拿.这个确实和Coins in a Line II有关系. 和上面思路一致,也是MinMax思路,只不过是从左边和右边选,相应对方也是这样. public class Solution { public boolean firstWillWin(int[] values) { // write your code here if (values == null || values.length == 0) return false; if (v…