若一个数的首位和末位相等,则定义这个数为“好数”。 例如:1231、4512394是好数,而12345、768740则不是好数。 请你编写一个函数,判断是不是好数。如果是好数则返回true,否则返回false。
示例1
输入
1231
输出
true
说明
首位和末位都是1,相等。
示例2
输入
4
输出
true
说明
首位和末位都是4,相等。
示例3
输入
100
输出
false
说明
首位是1,末位是0,不相等。
加载中...
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * 判断x是不是好数 * @param x int整型 待判断的数 * @return bool布尔型 */ public boolean judge (int x) { // write code here } }
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * 判断x是不是好数 * @param x int整型 待判断的数 * @return bool布尔型 */ bool judge(int x) { // write code here } };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # 判断x是不是好数 # @param x int整型 待判断的数 # @return bool布尔型 # class Solution: def judge(self , x ): # write code here
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * 判断x是不是好数 * @param x int整型 待判断的数 * @return bool布尔型 */ function judge( x ) { // write code here } module.exports = { judge : judge };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # 判断x是不是好数 # @param x int整型 待判断的数 # @return bool布尔型 # class Solution: def judge(self , x ): # write code here
package main /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * 判断x是不是好数 * @param x int整型 待判断的数 * @return bool布尔型 */ func judge( x int ) bool { // write code here }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * 判断x是不是好数 * @param x int整型 待判断的数 * @return bool布尔型 */ bool judge(int x ) { // write code here }
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # 判断x是不是好数 # @param x int整型 待判断的数 # @return bool布尔型 # class Solution def judge(x) # write code here end end
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * 判断x是不是好数 * @param x int整型 待判断的数 * @return bool布尔型 */ def judge(x: Int): Boolean = { // write code here } }
1231
true
4
true
100
false