
LeetCode
文章平均质量分 83
爱玩的凌风
爱编程,爱科学
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
leetcode79——Word Search
Word Search/*Word SearchGiven a 2D board and a word, find if the word exists in the grid.The word can be constructed from letters of sequentially adjacent cell, where "adjacent" cells are those原创 2015-04-16 21:32:16 · 470 阅读 · 0 评论 -
LeetCode65——Valid Number
Validate if a given string is numeric.Some examples:"0" => true" 0.1 " => true"abc" => false"1 a" => false"2e10" => trueNote: It is intended for the problem statement to be ambiguous.原创 2015-12-09 07:51:58 · 452 阅读 · 0 评论