9:回文数

This commit is contained in:
轩辕龙儿 2022-03-14 18:01:07 +08:00
parent 46d580c9f7
commit 429fe3aa50
2 changed files with 113 additions and 0 deletions

View File

@ -0,0 +1,68 @@
//给你一个整数 x 如果 x 是一个回文整数返回 true 否则返回 false
//
// 回文数是指正序从左向右和倒序从右向左读都是一样的整数
//
//
// 例如121 是回文 123 不是
//
//
//
//
// 示例 1
//
//
//输入x = 121
//输出true
//
//
// 示例 2
//
//
//输入x = -121
//输出false
//解释从左向右读, -121 从右向左读, 121- 因此它不是一个回文数
//
//
// 示例 3
//
//
//输入x = 10
//输出false
//解释从右向左读, 01 因此它不是一个回文数
//
//
//
//
// 提示
//
//
// -2³¹ <= x <= 2³¹ - 1
//
//
//
//
// 进阶你能不将整数转为字符串来解决这个问题吗
// Related Topics 数学 👍 1875 👎 0
package leetcode.editor.cn;
//9:回文数
public class PalindromeNumber {
public static void main(String[] args) {
Solution solution = new PalindromeNumber().new Solution();
// TO TEST
}
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
public boolean isPalindrome(int x) {
if (x < 0) {
return false;
}
StringBuilder sb = new StringBuilder("" + x);
return sb.toString().equals(sb.reverse().toString());
}
}
//leetcode submit region end(Prohibit modification and deletion)
}

View File

@ -0,0 +1,45 @@
<p>给你一个整数 <code>x</code> ,如果 <code>x</code> 是一个回文整数,返回 <code>true</code> ;否则,返回 <code>false</code></p>
<p>回文数是指正序(从左向右)和倒序(从右向左)读都是一样的整数。</p>
<ul>
<li>例如,<code>121</code> 是回文,而 <code>123</code> 不是。</li>
</ul>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>x = 121
<strong>输出:</strong>true
</pre>
<p><strong>示例&nbsp;2</strong></p>
<pre>
<strong>输入:</strong>x = -121
<strong>输出:</strong>false
<strong>解释:</strong>从左向右读, 为 -121 。 从右向左读, 为 121- 。因此它不是一个回文数。
</pre>
<p><strong>示例 3</strong></p>
<pre>
<strong>输入:</strong>x = 10
<strong>输出:</strong>false
<strong>解释:</strong>从右向左读, 为 01 。因此它不是一个回文数。
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>-2<sup>31</sup>&nbsp;&lt;= x &lt;= 2<sup>31</sup>&nbsp;- 1</code></li>
</ul>
<p>&nbsp;</p>
<p><strong>进阶:</strong>你能不将整数转为字符串来解决这个问题吗?</p>
<div><div>Related Topics</div><div><li>数学</li></div></div><br><div><li>👍 1875</li><li>👎 0</li></div>