Leetcode
孤独考拉
Github:https://github.com/Jackson-run
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Leetcode 之 Longest Common Prefix
Longest Common PrefixWrite a function to find the longest common prefix string amongst an array of strings.If there is no common prefix, return an empty string "".Example 1:Input: [“flower”,“flow”...原创 2018-11-25 21:45:06 · 295 阅读 · 0 评论 -
Leetcode 之 Longest Palindromic Substring
Given a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000.Example 1:Input: “babad”Output: “bab”Note: “aba” is also a valid answer.Example ...原创 2018-11-25 21:45:45 · 341 阅读 · 0 评论
分享