freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/rosetta-code/happy-numbers.chinese.md

77 lines
2.7 KiB
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.

---
title: Happy numbers
id: 594810f028c0303b75339ad1
challengeType: 5
videoUrl: ''
localeTitle: 快乐的数字
---
## Description
<section id="description"><p>幸福的数字由以下过程定义: </p><p>从任何正整数开始将数字替换为其数字的平方和并重复该过程直到数字等于1它将保持不变或者它在一个不包括1的循环中无休止地循环。这些数字这个过程在1结束的是幸福的数字而那些不以1结尾的数字是不愉快的数字。 </p><p>实现一个函数如果数字是满意的则返回true否则返回false。 </p></section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>happy</code>是一种功能。
testString: 'assert(typeof happy === "function", "<code>happy</code> is a function.");'
- text: <code>happy(1)</code>应该返回一个布尔值。
testString: 'assert(typeof happy(1) === "boolean", "<code>happy(1)</code> should return a boolean.");'
- text: <code>happy(1)</code>应该回归真实。
testString: 'assert(happy(1), "<code>happy(1)</code> should return true.");'
- text: <code>happy(2)</code>应该返回虚假。
testString: 'assert(!happy(2), "<code>happy(2)</code> should return false.");'
- text: <code>happy(7)</code>应该回归真实。
testString: 'assert(happy(7), "<code>happy(7)</code> should return true.");'
- text: <code>happy(10)</code>应该回归真实。
testString: 'assert(happy(10), "<code>happy(10)</code> should return true.");'
- text: <code>happy(13)</code>应该回归真实。
testString: 'assert(happy(13), "<code>happy(13)</code> should return true.");'
- text: <code>happy(19)</code>应该回归真实。
testString: 'assert(happy(19), "<code>happy(19)</code> should return true.");'
- text: <code>happy(23)</code>应该回归真实。
testString: 'assert(happy(23), "<code>happy(23)</code> should return true.");'
- text: <code>happy(28)</code>应该回归真实。
testString: 'assert(happy(28), "<code>happy(28)</code> should return true.");'
- text: <code>happy(31)</code>应该回归真实。
testString: 'assert(happy(31), "<code>happy(31)</code> should return true.");'
- text: <code>happy(32)</code>应该回归真实:
testString: 'assert(happy(32), "<code>happy(32)</code> should return true:.");'
- text: <code>happy(33)</code>应该返回虚假。
testString: 'assert(!happy(33), "<code>happy(33)</code> should return false.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function happy (number) {
// Good luck!
}
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>