LeetCode 293. Flip Game

原题链接在这里:https://leetcode.com/problems/flip-game/description/

题目:

You are playing the following Flip Game with your friend: Given a string that contains only these two characters: + and -, you and your friend take turns to flip two consecutive "++" into "--". The game ends when a person can no longer make a move and therefore the other person will be the winner.

Write a function to compute all possible states of the string after one valid move.

For example, given s = "++++", after one move, it may become one of the following states:

["--++","+--+","++--"
]

If there is no valid move, return an empty list [].

题解:

若是连着的"++", 就把这段用"--"替代放到res中.

Note: 当i == s.length()-1走到最后一位时. s.substring(i+1), 不会out of index, 会返回"". 但再大就不行了.

Time Complexity: O(n). Space: O(1) regardless res.

AC Java:

 1 public class Solution {
 2     public List<String> generatePossibleNextMoves(String s) {
 3         List<String> res = new ArrayList<String>();
 4         for(int i = 1; i<s.length(); i++){
 5             if(s.charAt(i) == '+' && s.charAt(i-1) == '+'){
 6                 res.add(s.substring(0,i-1) + "--" + s.substring(i+1));
 7             }
 8         }
 9         return res;
10     }
11 }

 跟上Flip Game II

转载于:https://www.cnblogs.com/Dylan-Java-NYC/p/5186278.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/419026.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Redis缓存,你真的懂了吗

为什么要用缓存&#xff08;缓存的优点、场景&#xff09; &#xff08;1&#xff09;在项目中缓存是如何使用的&#xff1f; 结合你自己项目的业务来&#xff0c;你如果用了那恭喜你&#xff0c;你如果没用那不好意思&#xff0c;你硬加也得加一个场景吧&#xff01; &…

Java sdk 调用淘宝开发平台

public static void main(String[] args) throws Exception { // TOP服务地址&#xff0c;正式环境需要设置为http://gw.api.taobao.com/router/rest String serverUrl “http://gw.api.tbsandbox.com/router/rest”; String appKey “test”; // 可替换为您的沙箱环境应用的…

编写一个函数func(),将此函数的输入参数(int型)逆序输出显示,如54321 – 12345,要求使用递归,并且函数体代码不超过8行...

public class Test{  //中间变量private String res "0";  //方法public int func(int i){if(i>0){int temp i%10;res resString.valueOf(temp);func(i/10);}return Integer.valueOf(res);}public static void main(String[] args){Test tnew Test();int a…

你会用Java实现两个大数相加吗

两个大数相加(Java)* 1、是整数&#xff1b;* 2、两个数无限大&#xff0c;long都装不下&#xff1b;* 3、不能用BigInteger&#xff1b;* 4、不能用任何包装类提供的运算方法&#xff1b;* 5、两个数都是以字符串的方式提供。 * 思路&#xff1a;* 字符串逐位相加&#xff0c;…

获取淘宝开发平台的sessionKey

淘宝API调用 申请 获取session key 在调用淘宝的API时&#xff0c;我们都会用到appkey,appsecret,appsession。 1、我们申请应用就会有appkey和appsecret了 2、正式环境下获取SessionKey 注意&#xff1a;web插件平台应用和web其它应用在正式环境下是同样的获取方法 1&…

PERL 实现微信登录

get 请求: https://login.weixin.qq.com/jslogin? appidwx782c26e4c19acffb &redirect_urihttps%3A%2F%2Fwx.qq.com%2Fcgi-bin%2Fmmwebwx-bin%2Fwebwxnewloginpage &funnew &langzh_CN &_1455501911998参数: _ 1455501911998 appid wx782…

安装git客户端

https://blog.csdn.net/sinat_16998945/article/details/81062278 https://blog.csdn.net/qq_38225558/article/details/86220668

SQL规范

一、三范式 1、 参考网址&#xff1a; http://www.cnblogs.com/linjiqin/archive/2012/04/01/2428695.html (1)&#xff0e;第一范式(确保每列保持原子性) (2)&#xff0e;第二范式(确保表中的每列都和主键相关) (3)&#xff0e;第三范式(确保每列都和主键列直接相关,而不是间接…

618小记

转载&#xff1a;https://www.zhihu.com/question/379688667/answer/1488971063 任何专业的开发者都应该明白&#xff0c;实现方法服从于功能需求&#xff0c;而功能需求体现在接口定义中。 所以&#xff0c;必须要先确定接口定义&#xff0c;然后才能开始实现&#xff0c;…

关于多条id相同,只取其中一条记录的sql语句

需要使用&#xff1a;分区函数用法(partition by 字段) select *,row_number() over(partition by item order by date ) as index from tab 分区索引 ------------------------------------------- SQL Server select * from (select * , row_number() over(partition by id …

TortoiseGit 客户端安装及使用

https://blog.csdn.net/sinat_16998945/article/details/81062278 https://www.cnblogs.com/xuwenjin/p/8573603.html

jstack命令使用

概述 jstack可用于导出java运用程序的线程堆栈。其基本使用语法为&#xff1a; jstack [-l] pid -l 选项用于打印锁的额外信息。使用演示样例 以下这段代码执行之后会出现死锁现象(由于线程1持有lock1。在等待lock2。线程2持有lock2在等待lock1&#xff0c;造成了循环等待。形成…

javascript for in,for each,for循环遍历区别

https://www.cnblogs.com/Youngly/p/6709546.html

如何从中级Java程序员过渡到高级Java程序员

1、https://www.zhihu.com/question/20300937 2、大厂的中间件技术岗位面&#xff08;https://blog.csdn.net/yunduo1/article/details/108454566&#xff09; 问题梳理&#xff1a; Linux的管道微服务的理解接口或者服务引入了新功能要更新发布&#xff0c;如何进行发布&…