牛牛是一个热爱数字的牛,他喜欢研究数字之间的特殊关系。最近,他对一类特殊的数字产生了兴趣,这类数字满足它与它的反转之和等于给定的数字。现在,牛牛想要考考你,看看你是否能够判断一个给定的数字是否属于这类特殊数字。 即给定num,存在一个非负整数 k,满足 k + reverse(k) = num,即可。
示例1
输入
123
输出
false
示例2
输入
66666
输出
true
说明
12345 + 54321 = 66666,所以返回 true。
备注:
0 反转后的数字可能包含前导零。
加载中...
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num int整型 * @return bool布尔型 */ public boolean isSpecialNumber (int num) { // write code here } }
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num int整型 * @return bool布尔型 */ bool isSpecialNumber(int num) { // write code here } };
#coding:utf-8 # # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param num int整型 # @return bool布尔型 # class Solution: def isSpecialNumber(self , num ): # write code here
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num int整型 * @return bool布尔型 */ public bool isSpecialNumber (int num) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num int整型 * @return bool布尔型 */ function isSpecialNumber( num ) { // write code here } module.exports = { isSpecialNumber : isSpecialNumber };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param num int整型 # @return bool布尔型 # class Solution: def isSpecialNumber(self , num: int) -> bool: # write code here
package main import "fmt" /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num int整型 * @return bool布尔型 */ func isSpecialNumber( num int ) bool { // write code here }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num int整型 * @return bool布尔型 */ bool isSpecialNumber(int num ) { // write code here }
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param num int整型 # @return bool布尔型 # class Solution def isSpecialNumber(num) # write code here end end
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num int整型 * @return bool布尔型 */ def isSpecialNumber(num: Int): Boolean = { // write code here } }
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num int整型 * @return bool布尔型 */ fun isSpecialNumber(num: Int): Boolean { // write code here } }
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num int整型 * @return bool布尔型 */ public boolean isSpecialNumber (int num) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num int整型 * @return bool布尔型 */ export function isSpecialNumber(num: number): boolean { // write code here }
public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num int整型 * @return bool布尔型 */ func isSpecialNumber ( _ num: Int) -> Bool { // write code here } }
struct Solution{ } impl Solution { fn new() -> Self { Solution{} } /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num int整型 * @return bool布尔型 */ pub fn isSpecialNumber(&self, num: i32) -> bool { // write code here } }
123
false
66666
true