9:回文数
This commit is contained in:
parent
46d580c9f7
commit
429fe3aa50
68
src/main/java/leetcode/editor/cn/PalindromeNumber.java
Normal file
68
src/main/java/leetcode/editor/cn/PalindromeNumber.java
Normal 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)
|
||||
|
||||
}
|
@ -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> </p>
|
||||
|
||||
<p><strong>示例 1:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>输入:</strong>x = 121
|
||||
<strong>输出:</strong>true
|
||||
</pre>
|
||||
|
||||
<p><strong>示例 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> </p>
|
||||
|
||||
<p><strong>提示:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li><code>-2<sup>31</sup> <= x <= 2<sup>31</sup> - 1</code></li>
|
||||
</ul>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>进阶:</strong>你能不将整数转为字符串来解决这个问题吗?</p>
|
||||
<div><div>Related Topics</div><div><li>数学</li></div></div><br><div><li>👍 1875</li><li>👎 0</li></div>
|
Loading…
Reference in New Issue
Block a user