博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Happy Number leetcode
阅读量:5878 次
发布时间:2019-06-19

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

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.

Example: 19 is a happy number

  • 12 + 92 = 82
  • 82 + 22 = 68
  • 62 + 82 = 100
  • 12 + 02 + 02 = 1

中规中矩的答案

bool isHappy(int n) {    unordered_map
m; while (m.find(n) == m.end()) { m[n] = true; int t = 0; while (n) { int a = n % 10; t += a * a; n = n / 10; } n = t; } return n == 1;}

 

转载于:https://www.cnblogs.com/sdlwlxf/p/5136370.html

你可能感兴趣的文章
服务器的svnserver修改密码
查看>>
利用 fdisk进行分区
查看>>
WPF 实现窗体拖动
查看>>
来自维基百科程序员Brandon Harris
查看>>
NULL不是数值
查看>>
CentOS 5 全功能WWW服务器搭建全教程
查看>>
30个优秀的后台管理界面设计案例分享
查看>>
scala111
查看>>
模块化服务规范——OSGI
查看>>
劣质代码评析——猜数字问题(上)
查看>>
纸上谈兵: 栈 (stack)
查看>>
Windows phone8 基础篇(三) 常用控件开发
查看>>
Oracle学习笔记之五,Oracle 11g的PL/SQL入门
查看>>
大叔手记(3):Windows Silverlight/Phone7/Mango开发学习系列教程
查看>>
Btrace使用教程
查看>>
IE6 IE7 不支持 JSON
查看>>
多功能表单填报系统V1.2.1-适用于在线报名系统、调查、数据收集等
查看>>
HotSpot VM GC 的种类
查看>>
Android ViewPager滑动背景渐变
查看>>
HDU 2072 单词数
查看>>