
文法
文章平均质量分 74
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 8. String to Integer (atoi)(字符串转数字)
原题网址:https://leetcode.com/problems/string-to-integer-atoi/ Implement atoi to convert a string to an integer. Hint: Carefully consider all possible input cases. If you want a challenge, please原创 2016-05-19 04:32:35 · 487 阅读 · 0 评论 -
LeetCode 13. Roman to Integer(罗马数字转阿拉伯数字)
原题网址:https://leetcode.com/problems/roman-to-integer/ Given a roman numeral, convert it to an integer. Input is guaranteed to be within the range from 1 to 3999. 方法:理解罗马数字。 public class Solut原创 2016-05-19 05:33:26 · 698 阅读 · 0 评论 -
LeetCode 71. Simplify Path(简化路径)
原题网址:https://leetcode.com/problems/simplify-path/ Given an absolute path for a file (Unix-style), simplify it. For example, path = "/home/", => "/home" path = "/a/./b/../../c/", => "/c"原创 2016-05-22 00:05:09 · 754 阅读 · 0 评论 -
LeetCode 10. Regular Expression Matching(正则表达式匹配)
原题网址:https://leetcode.com/problems/regular-expression-matching/ Implement regular expression matching with support for '.' and '*'. '.' Matches any single character. '*' Matches zero or more of原创 2016-05-19 05:10:02 · 1522 阅读 · 0 评论 -
LeetCode 65. Valid Number(校验数字)
原题网址:https://leetcode.com/problems/valid-number/ Validate if a given string is numeric. Some examples: "0" => true " 0.1 " => true "abc" => false "1 a" => false "2e10" => true Note:原创 2016-05-22 00:04:48 · 877 阅读 · 0 评论 -
LeetCode 58. Length of Last Word(最后一个单词的长度)
原题网址:https://leetcode.com/problems/length-of-last-word/ Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string.原创 2016-05-21 07:44:17 · 512 阅读 · 0 评论