Skip to content

Latest commit

 

History

History
43 lines (35 loc) · 1.84 KB

File metadata and controls

43 lines (35 loc) · 1.84 KB

< Previous                  Next >

You are given a string s. You can convert s to a palindrome by adding characters in front of it.

Return the shortest palindrome you can find by performing this transformation.

 

Example 1:

Input: s = "aacecaaa"
Output: "aaacecaaa"

Example 2:

Input: s = "abcd"
Output: "dcbabcd"

 

Constraints:

  • 0 <= s.length <= 5 * 104
  • s consists of lowercase English letters only.

Related Topics

[String] [String Matching] [Hash Function] [Rolling Hash]

Similar Questions

  1. Longest Palindromic Substring (Medium)
  2. Implement strStr() (Easy)
  3. Palindrome Pairs (Hard)