We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de8d5f5 commit cf8e109Copy full SHA for cf8e109
src/main/java/com/fishercoder/solutions/_5.java
@@ -1,19 +1,5 @@
1
package com.fishercoder.solutions;
2
3
-/**
4
- * 5. Longest Palindromic Substring
5
- *
6
- * Given a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000.
7
-
8
- Example:
9
- Input: "babad"
10
- Output: "bab"
11
- Note: "aba" is also a valid answer.
12
13
14
- Input: "cbbd"
15
- Output: "bb"
16
- */
17
public class _5 {
18
19
public static class Solution1 {
0 commit comments