2017年4月21日
摘要: 4月 21日 1 7 Reverse Integer 先算新结果,与旧结果比较,如果不等 返回0 public int reverse(int x) { int result = 0; while (x != 0) { int tail = x % 10; int newR = result * 1 阅读全文
posted @ 2017-04-21 11:17 wheleetcode 阅读(141) 评论(0) 推荐(0)