Math Easy 1.7. Reverse Integer 采用验证的方式,如果当前newResult越界,返回错误。 2. 9. Palindrome Number 我们可以利用取整和取余来获得我们想要的数字,比如 1221 这个数字,如果 计算 1221 / 1000, 则可得首位1, 如果 ...
分类:
其他好文 时间:
2019-04-23 19:25:27
阅读次数:
116
判断String是否为palindrome:Two Pointers(left & right) 同时边扫边check 当前两边的char是否相同 code 判断number是否为palindrome:先reverse original number 变为reversed number ,再判断 o ...
分类:
其他好文 时间:
2019-04-20 09:40:26
阅读次数:
128
Given a string s, you are allowed to convert it to a palindrome by adding characters in front of it. Find and return the shortest palindrome you can f ...
分类:
其他好文 时间:
2019-04-15 19:54:13
阅读次数:
112
Palindrome Number 问题简介:判断输入数字是否是回文,不是返回0,负数返回0 举例: 1: 输入: 121 输出: true 2: 输入: -121 输出: false 解释: 回文为121-,所以负数都不符合 3: 输入: 10 输出: false 解释: 倒序为01,不符合要求 ...
分类:
其他好文 时间:
2019-04-14 16:33:29
阅读次数:
152
graphdfsbfs 1.clone graph2.copy list with random pointer3.topological sorting4.permutations5.subsets6.n queens7.subsetsII 8.palindrome partitioning9.c ...
分类:
其他好文 时间:
2019-04-10 21:59:36
阅读次数:
154
Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward. Example 1: Example 2: Example 3: ...
分类:
其他好文 时间:
2019-04-04 09:27:56
阅读次数:
162
上方是测试代码,不能正常使用,需要程序调用palindrome方法,上方未写调用过程,只是简单的演示; JS的正则表达式内容一般用“/ /” 两个正斜杠包含表达式的主体,主体也就是正斜杠后跟的g是修饰符(可不写)。当前为g表示执行全局匹配(查找所有匹配而非在找到第一个匹配后停止);若为i则表示执行对 ...
分类:
Web程序 时间:
2019-04-02 12:36:25
阅读次数:
196
到题目链接:http://codeforces.com/contest/1140/problem/E 题目大意: 如果一个数组的存在一个奇数长的回文就不好。 不是不好的数组是好的。 你可以把-1用1到k中一个数替换。问可以有多少种不同的好数组。 开虚拟赛最后一分钟把它A了,很开心,很开心。 思路: ...
分类:
其他好文 时间:
2019-03-29 14:47:35
阅读次数:
174
Given a string which we can delete at most k, return whether you can make a palindrome. For example, given 'waterrfetawx' and a k of 2, you could dele ...
分类:
其他好文 时间:
2019-03-29 13:05:49
阅读次数:
107
sa[i]表示排名为 i 的后缀的第一个字符在原串中的位置 height[i]表示排名为 i 和排名为 i+1的后缀的最长公共前缀的长度 这些题目我并不一定全是用SA做的,但是还是要标记一下的 K - Extend to Palindrome Your task is, given an integ ...
分类:
编程语言 时间:
2019-03-25 21:55:00
阅读次数:
174