Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases. Note: For the purpose of this problem, w ...
分类:
其他好文 时间:
2018-12-18 10:55:42
阅读次数:
150
There are 1000 buckets, one and only one of them contains poison, the rest are filled with water. They all look the same. If a pig drinks that poison ...
分类:
编程语言 时间:
2018-12-17 21:33:50
阅读次数:
185
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: ...
分类:
其他好文 时间:
2018-12-17 20:13:52
阅读次数:
179
1.测试文件 [root@L shells]# cat catDog.txt snake snake pig bird dog cat snake pig bird snake cat bird dog bird tiger snake bird cat lion ji sdf 2.sed脚本文件 ...
分类:
其他好文 时间:
2018-12-16 14:34:33
阅读次数:
111
这是悦乐书的第 196 次更新,第 202 篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第58题(顺位题号是234)。给出一个单链表,确定它是否是回文。例如: 输入:1 2 输出:false 输入:1 2 2 1 输出:true 本次解题使用的开发工具是eclipse ...
分类:
编程语言 时间:
2018-12-09 14:14:51
阅读次数:
198
回顾: SpringBoot之基础 配置文件 ① 两种全局配置文件(文件名是固定的) 配置文件放在src/main/resources目录或者类路径/config下 application.properties(优先级高) application.yml / application.yaml 配置文 ...
分类:
编程语言 时间:
2018-12-08 20:18:47
阅读次数:
220
public bool IsPalindrome(int x) { // Special cases: // As discussed above, when x revertedNumber) { revertedNumber = revertedNumber * 10 + x % 10; x /... ...
分类:
其他好文 时间:
2018-12-08 11:09:16
阅读次数:
118
把内存数据转换字符叫序列化把字符转成内存数据类型反序列化 json,用于字符串 和 python数据类型间进行转换dumps 和loads 匹配使用 dumps 只能转成字符串,loads只能从字符串转换成数据类型。只能保存在内存里。 dump 转成字符串并写入文件, load,读文件并转成数据类型 ...
分类:
Web程序 时间:
2018-12-07 23:23:29
阅读次数:
249
题意:给定一个只包含小写字母的字符串,你可以修改任意位置的字符(变换为a-z中任一个) 然后重新排列字符串。现在要求用最少次数的修改得到一个回文串,若有多种方案,输出字典序最小的方案。 对于长度为偶数的字符串显然好说 我们只需开一个桶记录下a-z分别有多少个 偶数个的前后分别输出 个数/2次 即可 ...
分类:
其他好文 时间:
2018-12-07 11:54:39
阅读次数:
142
Given a string which consists of lowercase or uppercase letters, find the length of the longest palindromes that can be built with those letters. This ...
分类:
编程语言 时间:
2018-12-06 10:19:11
阅读次数:
242