码迷,mamicode.com
首页 > 移动开发 > 详细

LeetCode happyint

时间:2015-06-30 10:17:35      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:





public
class Solution { public boolean isHappy(int n) { Set<Integer> set = new HashSet<>(); while(n != 1 && !set.contains(n)){ set.add(n); int next = 0; do{ next += (n % 10) * (n % 10); }while((n /= 10) > 0); n = next; } return n == 1; } }

 

LeetCode happyint

标签:

原文地址:http://www.cnblogs.com/puck/p/4609545.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!