Recca Chao 的 gitHub page

推廣網站開發,包含 Laravel 和 Kotlin 後端撰寫、自動化測試、讀書心得等。Taiwan Kotlin User Group 管理員。

View on GitHub

Problem 34

Description

This problem was asked by Quora.

Given a string, find the palindrome that can be made by inserting the fewest number of characters as possible anywhere in the word. If there is more than one palindrome of minimum length that can be made, return the lexicographically earliest one (the first one alphabetically).

For example, given the string race, you should return ecarace, since we can add three letters to it (which is the smallest amount to make a palindrome). There are seven other palindromes that can be made from race by adding three letters, but ecarace comes first alphabetically.

As another example, given the string “google”, you should return elgoogle.

Solutions