Flip Game
Posted keepshuatishuati
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Flip Game相关的知识,希望对你有一定的参考价值。
1 public class Solution { 2 public List<String> generatePossibleNextMoves(String s) { 3 List<String> result = new ArrayList<>(); 4 if (s.length() < 2) { 5 return result; 6 } 7 8 for (int i = 0; i < s.length() - 1; i++) { 9 if (s.charAt(i) == ‘+‘ && s.charAt(i+1) == ‘+‘) { 10 result.add(s.substring(0, i) + "--" + s.substring(i+2)); 11 } 12 } 13 return result; 14 } 15 }
以上是关于Flip Game的主要内容,如果未能解决你的问题,请参考以下文章