胸怀万里世界, 放眼无限未来。这篇文章主要讲述40. leetcode 202. Happy Number相关的知识,希望能为你提供帮助。
Write an algorithm to determine if a number is "happy".
A happy number is a number defined by the following process: Starting with any positive integer, replace the number by the sum of the squares of its digits, and repeat the process until the number equals 1 (where it will stay), or it loops endlessly in a cycle which does not include 1. Those numbers for which this process ends in 1 are happy numbers.
【40. leetcode 202. Happy Number】Example:
19 is a happy number
- 12 + 92 = 82
- 82 + 22 = 68
- 62 + 82 = 100
- 12 + 02 + 02 = 1
文章图片
推荐阅读
- Android开始之 入门
- Android Studio创建AIDL文件并实现进程间通讯
- Android基础TOP6_2:Gallery +Image完成画廊
- Android中 string.xml资源 如何添加参数()
- 安卓的异步下载(Asynchttpclient以及Volley)
- SDK manager.exe 运行时报错(系统找不到指定的文件 android.bat)
- Android基础TOP6_1:FrameLyayout和ImageView制作层叠图片
- applicationContext.xml
- 为android编译libsocket的脚本