选择器1.基本选择器 1.1 #id $("#one") $("#two\\:id") 1.2 element $("div") 1.3 .class $(".class") 1.4 * //匹配所有元素 $("*") 1.5 selector1,selector2,selectorN...
分类:
Web程序 时间:
2015-12-05 15:45:59
阅读次数:
216
The gray code is a binary numeral system where two successive values differ in only one bit.Given a non-negative integer n representing the total numb...
分类:
其他好文 时间:
2015-12-05 12:44:50
阅读次数:
115
原题链接在这里:https://leetcode.com/problems/plus-one/特殊情况是 全是9时需要新建一个数组。Time Complexity: O(n), Space O(n).AC Java: 1 public class Solution { 2 public in...
分类:
其他好文 时间:
2015-12-05 07:12:29
阅读次数:
117
如何查看OPP service log:SELECT fcpp.concurrent_request_id req_id, fcp.node_name, fcp.logfile_name FROM fnd_conc_pp_actions fcpp, fnd_concurrent_processes....
分类:
其他好文 时间:
2015-12-04 20:53:48
阅读次数:
178
0.一个问题使用过EF的人相信都会遇到Validation failed for one or more entities. See ‘EntityValidationErrors’这种异常,这是由于EF在写入数据库前对实体验证不通过引起的异常(如果没有设置Configuration.Validat...
分类:
其他好文 时间:
2015-12-04 01:04:17
阅读次数:
221
题目描述: In an episode of the Dick Van Dyke show, little Richie connects the freckles on his Dad's back to form a picture of the Liberty Bell. Alas, one ...
分类:
其他好文 时间:
2015-12-03 23:26:16
阅读次数:
499
0x00:序言Two strangers fell in love,Only one knows it wasn’t by chance.To the searching tags, you may well fall in love with http:// 10.2.26.67Github地址:...
分类:
其他好文 时间:
2015-12-03 22:59:04
阅读次数:
279
Given a stringS, find the longest palindromic substring inS. You may assume that the maximum length ofSis 1000, and there exists one unique longest pa...
分类:
其他好文 时间:
2015-12-03 21:24:33
阅读次数:
220
题目:
The count-and-say sequence is the sequence of integers
beginning as follows:
1, 11, 21, 1211, 111221, …
1 is read off as “one 1” or 11.
11 is read off as “two 1s” or 21.
21 is read...
分类:
其他好文 时间:
2015-12-03 15:39:01
阅读次数:
185
题目信息1032. Sharing (25) 时间限制100 ms
内存限制65536 kB
代码长度限制16000 BTo store English words, one method is to use linked lists and store a word letter by letter. To save some space, we may let the words share...
分类:
其他好文 时间:
2015-12-03 14:15:43
阅读次数:
140