freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-92-square-digit-cha...

22 lines
618 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

---
id: 5900f3c81000cf542c50fedb
title: 问题92方形数字链
challengeType: 5
videoUrl: ''
---
# --description--
通过在数字中连续添加数字的平方来创建数字链以形成新的数字直到之前看到它为止。例如44→32→13→10→1→1 85→89→145→42→20→4→16→37→58→89因此任何到达1或89的链条都会卡在无限循环中。最令人惊讶的是每个起始号码最终都会达到1或89.低于一千万的起始号码将达到89个
# --hints--
`euler92()`应返回8581146。
```js
assert.strictEqual(euler92(), 8581146);
```
# --solutions--