博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Leetcode 9. Palindrome Number
阅读量:6256 次
发布时间:2019-06-22

本文共 540 字,大约阅读时间需要 1 分钟。

这题好简单

public class Solution {    public boolean isPalindrome(int x) {        if (x < 0) {            return false;        }                List
number = new ArrayList
(); while (x >= 10) { number.add(x%10); x = x / 10; } number.add(x); int p = 0; int q = number.size() - 1; while (p < q) { if (number.get(p) != number.get(q)) { return false; } p++; q--; } return true; }}

转载地址:http://dqxsa.baihongyu.com/

你可能感兴趣的文章
Source Insight 中文注释为乱码解决办法(完美解决,一键搞定)
查看>>
【LoadRunner】安装LoadRunner
查看>>
Linux内存管理 (15)页面迁移
查看>>
在高并发、高负载的情况下,如何给表添加字段并设置DEFAULT值?
查看>>
Cocos2d-x 3.0final 终结者系列教程13-贪食蛇游戏案例(全)
查看>>
Nginx的try_files指令和命名location使用实例
查看>>
IO多路复用之select
查看>>
pd_ds中的hash
查看>>
买书不读是一种什么病?
查看>>
微信接口开发报错invalid credential, access_token is invalid or not latest hint
查看>>
nohup 部署springboot 使用命令
查看>>
MQ产品比较-ActiveMQ-RocketMQ
查看>>
暂时没有想好呢。
查看>>
windows服务 MVC之@Html.Raw()用法 文件流的读写 简单工厂和工厂模式对比
查看>>
PHP解析URL并得到URL中的参数
查看>>
【vue.js】绑定click事件
查看>>
字体属性
查看>>
linux的iptables和firewall的区别
查看>>
Install RabbitMQ server in CentOS 7
查看>>
Eureka的优势
查看>>