码迷,mamicode.com
首页 > 其他好文 > 详细

Flip Game II

时间:2016-07-06 14:51:40      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

 1 public class Solution {
 2     public boolean canWin(String s) {
 3         if (s.length() < 2) {
 4             return false;
 5         }
 6         List<String> result = new ArrayList<>();
 7         for (int i = 0; i < s.length() - 1; i++) {
 8             if (s.charAt(i) == ‘+‘ && s.charAt(i+1) == ‘+‘) {
 9                 result.add(s.substring(0, i) + "--" + s.substring(i+2));
10             }
11         }
12         for (String next : result) {
13             if (!canWin(next)) {
14                 return true;
15             }
16         }
17         return false;
18     }
19 }

 

Flip Game II

标签:

原文地址:http://www.cnblogs.com/shuashuashua/p/5646725.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!