
自动机
文章平均质量分 81
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 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 评论