随笔分类 -  Leetcode | String

摘要:问题描述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 ... 阅读全文
posted @ 2015-08-18 11:32 Chapter 阅读(159) 评论(0) 推荐(0)
摘要:问题描述Given a string of numbers and operators, return all possible results from computing all the different possible ways to group numbers and operators... 阅读全文
posted @ 2015-07-28 10:28 Chapter 阅读(184) 评论(0) 推荐(0)
摘要:问题描述Given a stringS, find the longest palindromic substring inS. You may assume that the maximum length ofSis 1000, and there exists one unique longes... 阅读全文
posted @ 2015-07-27 11:04 Chapter 阅读(193) 评论(0) 推荐(0)