题目描述: Given a non-empty string s, you may delete at most one character. Judge whether you can make it a palindrome. Example 1: Example 2: Note: 要完成的函数 ...
分类:
其他好文 时间:
2018-05-12 02:42:33
阅读次数:
169
csshack 1 2 3 4 5 6 7 我很少使用hacker的,可能是个人习惯吧,我不喜欢写的代码IE不兼容,然后用hack来解决。不过hacker还是非常好用的。使用hacker我可以把浏览器分为3类:IE6 ;IE7和遨游;其他(IE8 chrome<br>ff safari opera等 ...
分类:
其他好文 时间:
2018-05-11 23:47:11
阅读次数:
190
Imagine you are attending your math lesson at school. Once again, you are bored because your teacher tells things that you already mastered years ago ...
分类:
其他好文 时间:
2018-05-11 23:44:45
阅读次数:
194
You are given a tree with N nodes. The tree nodes are numbered from 1 to N and have colors C1, C2,. . . , CN initially. You have to handle M instructi ...
分类:
其他好文 时间:
2018-05-11 23:29:20
阅读次数:
151
传送门 题目 There is a square matrix n?×?n, consisting of non-negative integer numbers. You should find such a way on it that starts in the upper left cell ...
分类:
其他好文 时间:
2018-05-11 20:31:54
阅读次数:
193
Java的基础框架 3W:What How Why What:一个东西是什么,具备什么样的功能 怎么用 How: 怎么做?功能如何实现 3W:What How Why What:一个东西是什么,具备什么样的功能 怎么用 How: 怎么做?功能如何实现 读源代码(jdk)->学习很多,优雅的编程技巧建 ...
分类:
编程语言 时间:
2018-05-11 20:24:43
阅读次数:
187
7.1 About scatter-loading The scatter-loading mechanism enables you to specify the memory map of an image to the linker using a description in a text ...
分类:
其他好文 时间:
2018-05-11 16:12:29
阅读次数:
178
What the heck is "Script error"? Ben Vinegar/ May 17, 2016 If you’ve done any work with the JavaScript onerror event before, you’ve probably come acro ...
static class Extensions { public static IList<T> Clone<T>(this IList<T> listToClone) where T: ICloneable { return listToClone.Select(item => (T)item.C ...