Comparaison des versions

Légende

  • Ces lignes ont été ajoutées. Ce mot a été ajouté.
  • Ces lignes ont été supprimées. Ce mot a été supprimé.
  • La mise en forme a été modifiée.


Excerpt

Given a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000.


Example 1:

Code Block
Input: "babad"
Output: "bab"

...