[抄题]: Given a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000. Example 1: Example 2: [暴力解法] ...
分类:
其他好文 时间:
2018-07-29 12:55:39
阅读次数:
120
problem experience Palindromic 回文的 pat 的判题器不支持long long I64d, 支持lld, printf时应该使用 lld。 ...
分类:
其他好文 时间:
2018-07-19 22:01:34
阅读次数:
170
problem A number that will be the same when it is written forwards or backwards is known as a Palindromic Number. For example, 1234321 is a palindromi ...
分类:
其他好文 时间:
2018-07-16 21:44:05
阅读次数:
134
A number that will be the same when it is written forwards or backwards is known as a Palindromic Number. For example, 1234321 is a palindromic number ...
分类:
其他好文 时间:
2018-07-07 15:55:58
阅读次数:
164
5. Longest Palindromic Substring 题目描述和难度 + 题目描述: 给定一个字符串 s,找到 s 中最长的回文子串。你可以假设?s 的最大长度为1000。 示例 1: 输入: "babad" 输出: "bab" 注意: "aba"也是一个有效答案。 示例 2: 输入: ...
分类:
其他好文 时间:
2018-06-20 14:44:00
阅读次数:
163
Given a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000. Example 1: Example 2: ...
分类:
其他好文 时间:
2018-06-18 23:47:35
阅读次数:
230
问题描述: Given a string, your task is to count how many palindromic substrings in this string. The substrings with different start indexes or end indexes ...
分类:
其他好文 时间:
2018-06-16 10:32:33
阅读次数:
147
描述Given a string S, find the longest palindromic substring in S. You may assume that the maximumlength of S is 1000, and there exists one unique longe ...
分类:
其他好文 时间:
2018-06-13 23:42:30
阅读次数:
316
A number that will be the same when it is written forwards or backwards is known as a Palindromic Number. For example, 1234321 is a palindromic number ...
分类:
其他好文 时间:
2018-06-08 14:17:37
阅读次数:
175
A number that will be the same when it is written forwards or backwards is known as a Palindromic Number. For example, 1234321 is a palindromic number ...
分类:
其他好文 时间:
2018-06-08 00:49:05
阅读次数:
143