在一个农场中,农夫使用浮点数来标识他的牛群。农夫发现,有些牛的编号在小数点两边各自都是回文数,他觉得这很有趣。现在农夫给你一个浮点数 x ,表示一头牛的编号,如果这个编号的小数点两边各自都是回文数(不算前导0和后导0,某一边为空也算回文),返回 true ;否则,返回 false 。
示例1
输入
"121.121000"
输出
true
示例2
输入
"123.321000"
输出
false
示例3
输入
"131.000000"
输出
true
备注:
浮点数用string的形式输入,string长度2
加载中...
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param x string字符串 * @return bool布尔型 */ public boolean isPalindromeNumber (String x) { // write code here } }
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param x string字符串 * @return bool布尔型 */ bool isPalindromeNumber(string x) { // write code here } };
#coding:utf-8 # # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param x string字符串 # @return bool布尔型 # class Solution: def isPalindromeNumber(self , x ): # write code here
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param x string字符串 * @return bool布尔型 */ public bool isPalindromeNumber (string x) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param x string字符串 * @return bool布尔型 */ function isPalindromeNumber( x ) { // write code here } module.exports = { isPalindromeNumber : isPalindromeNumber };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param x string字符串 # @return bool布尔型 # class Solution: def isPalindromeNumber(self , x: str) -> bool: # write code here
package main import "fmt" /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param x string字符串 * @return bool布尔型 */ func isPalindromeNumber( x string ) bool { // write code here }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param x string字符串 * @return bool布尔型 */ bool isPalindromeNumber(char* x ) { // write code here }
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param x string字符串 # @return bool布尔型 # class Solution def isPalindromeNumber(x) # write code here end end
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param x string字符串 * @return bool布尔型 */ def isPalindromeNumber(x: String): Boolean = { // write code here } }
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param x string字符串 * @return bool布尔型 */ fun isPalindromeNumber(x: String): Boolean { // write code here } }
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param x string字符串 * @return bool布尔型 */ public boolean isPalindromeNumber (String x) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param x string字符串 * @return bool布尔型 */ export function isPalindromeNumber(x: string): boolean { // write code here }
public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param x string字符串 * @return bool布尔型 */ func isPalindromeNumber ( _ x: String) -> Bool { // write code here } }
struct Solution{ } impl Solution { fn new() -> Self { Solution{} } /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param x string字符串 * @return bool布尔型 */ pub fn isPalindromeNumber(&self, x: String) -> bool { // write code here } }
"121.121000"
true
"123.321000"
false
"131.000000"
true