https://oj.leetcode.com/problems/longest-substring-without-repeating-characters/Given a string, find the length of the longest substring without repea...
分类:
其他好文 时间:
2015-01-18 23:57:54
阅读次数:
264
http://numbbbbb.gitbooks.io/-the-swift-programming-language-/content/chapter2/03_Strings_and_Characters.html本页包含内容:字符串字面量初始化空字符串字符串可变性字符串是值类型使用字符计算字符数...
分类:
其他好文 时间:
2015-01-18 22:30:58
阅读次数:
298
标题:Valid Parentheses通过率:27.7%难度:简单Given a string containing just the characters'(',')','{','}','['and']', determine if the input string is valid.The b...
分类:
其他好文 时间:
2015-01-18 12:57:08
阅读次数:
130
题目:
Given a string, find the length of the longest substring without repeating characters. For example,
the longest substring without repeating letters for "abcabcbb" is "abc", which the length is ...
分类:
编程语言 时间:
2015-01-17 18:10:44
阅读次数:
251
Given a stringsand a dictionary of wordsdict, add spaces insto construct a sentence where each word is a valid dictionary word.Return all such possibl...
分类:
其他好文 时间:
2015-01-17 16:22:26
阅读次数:
122
java转义符我一直认为是很难理解的东西,我常常把\符号和/符号弄混,不知道那一个是转义符 。
在java语言中你要知道的\是一个讨厌一个人的物种,\总喜欢秀恩爱,一般都是成对出现的如\\,但是也会有少量的奇葩\不喜欢另一半\,他们喜欢其他的字符,这些奇葩的字符就和人类中的同性恋一样不和大多数人喜欢的一样,他们喜欢的是特别的,如\和b在一起表示字符的边界,\r在一起表示回车,\n表示换行 \t表...
分类:
编程语言 时间:
2015-01-16 19:10:00
阅读次数:
394
Validate if a given string is numeric.
Some examples:
"0" => true
" 0.1 " => true
"abc" => false
"1 a" => false
"2e10" => true
Note: It is intended for the problem statement to be ambiguo...
分类:
其他好文 时间:
2015-01-16 16:49:43
阅读次数:
153
Given a string containing just the characters'(',')','{','}','['and']', determine if the input string is valid.The brackets must close in the correct ...
分类:
其他好文 时间:
2015-01-16 15:59:49
阅读次数:
183
以下是本人收集的jquery插件下载地址:.............版本自行选择。jquery官网:http://jquery.com/jquery.validate.js 官网下载地址:http://bassistance.de/jquery-plugins/jquery-plugin-valid...
分类:
Web程序 时间:
2015-01-16 14:27:50
阅读次数:
1865
Given a binary tree, determine if it is a valid binary search tree (BST).
Assume a BST is defined as follows:
The left subtree of a node contains only nodes with keys less than the node's ke...
分类:
编程语言 时间:
2015-01-16 10:12:49
阅读次数:
163