mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-05 15:31:43 +08:00
update
This commit is contained in:
29
leetcode/problem/find-the-closest-palindrome.html
Normal file
29
leetcode/problem/find-the-closest-palindrome.html
Normal file
@@ -0,0 +1,29 @@
|
||||
<p>Given a string <code>n</code> representing an integer, return <em>the closest integer (not including itself), which is a palindrome</em>. If there is a tie, return <em><strong>the smaller one</strong></em>.</p>
|
||||
|
||||
<p>The closest is defined as the absolute difference minimized between two integers.</p>
|
||||
|
||||
<p> </p>
|
||||
<p><strong>Example 1:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>Input:</strong> n = "123"
|
||||
<strong>Output:</strong> "121"
|
||||
</pre>
|
||||
|
||||
<p><strong>Example 2:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>Input:</strong> n = "1"
|
||||
<strong>Output:</strong> "0"
|
||||
<strong>Explanation:</strong> 0 and 2 are the closest palindromes but we return the smallest which is 0.
|
||||
</pre>
|
||||
|
||||
<p> </p>
|
||||
<p><strong>Constraints:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li><code>1 <= n.length <= 18</code></li>
|
||||
<li><code>n</code> consists of only digits.</li>
|
||||
<li><code>n</code> does not have leading zeros.</li>
|
||||
<li><code>n</code> is representing an integer in the range <code>[1, 10<sup>18</sup> - 1]</code>.</li>
|
||||
</ul>
|
Reference in New Issue
Block a user