command
Version:
v0.0.0-...-bdc1504
Opens a new window with list of versions in this module.
Published: Oct 4, 2023
License: MIT
Opens a new window with license information.
Imports: 1
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
README
¶
Longest Palindromic Substring
leetCode Link : https://leetcode.com/problems/longest-palindromic-substring/description/
This My Answer For This Challenge.
Absolutely This Answer not my First Try! ( don't give up! )
Description Question
Given a string s, return the longest palindromic substring in s.
Example 1:
Input: s = "babad"
Output: "bab"
Explanation: "aba" is also a valid answer.
Example 2:
Input: s = "cbbd"
Output: "bb"
Constraints:
- 1 <= s.length <= 1000
- s consist of only digits and English letters.
Documentation
¶
There is no documentation for this package.
Source Files
¶
Click to show internal directories.
Click to hide internal directories.