61 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
---
 | 
						||
title: Fibonacci sequence
 | 
						||
id: 597f24c1dda4e70f53c79c81
 | 
						||
challengeType: 5
 | 
						||
videoUrl: ''
 | 
						||
localeTitle: 斐波那契序列
 | 
						||
---
 | 
						||
 | 
						||
## Description
 | 
						||
<section id="description"><p>编写一个函数来生成第<big>n <sup>个</sup></big> Fibonacci数。 </p> /// <p>第<big>n <sup>个</sup></big> Fibonacci数由下式给出:/// </p><p> F <sub>n</sub> = F <sub>n-1</sub> + F <sub>n-2</sub> </p> /// <p>该系列的前两个术语是0,1。 </p> /// <p>因此,该系列是:0,1,1,2,3,5,8,13 ...... </p> /// </section>
 | 
						||
 | 
						||
## Instructions
 | 
						||
<section id="instructions">
 | 
						||
</section>
 | 
						||
 | 
						||
## Tests
 | 
						||
<section id='tests'>
 | 
						||
 | 
						||
```yml
 | 
						||
tests:
 | 
						||
  - text: <code>fibonacci</code>是一种功能。
 | 
						||
    testString: 'assert(typeof fibonacci === "function", "<code>fibonacci</code> is a function.");'
 | 
						||
  - text: <code>fibonacci(2)</code>应该返回一个数字。
 | 
						||
    testString: 'assert(typeof fibonacci(2) == "number", "<code>fibonacci(2)</code> should return a number.");'
 | 
						||
  - text: <code>fibonacci(3)</code>应该返回1.“)
 | 
						||
    testString: 'assert.equal(fibonacci(3),1,"<code>fibonacci(3)</code> should return 1.");'
 | 
						||
  - text: <code>fibonacci(5)</code>应该返回3.“)
 | 
						||
    testString: 'assert.equal(fibonacci(5),3,"<code>fibonacci(5)</code> should return 3.");'
 | 
						||
  - text: <code>fibonacci(10)</code>应该返回34.“)
 | 
						||
    testString: 'assert.equal(fibonacci(10),34,"<code>fibonacci(10)</code> should return 34.");'
 | 
						||
 | 
						||
```
 | 
						||
 | 
						||
</section>
 | 
						||
 | 
						||
## Challenge Seed
 | 
						||
<section id='challengeSeed'>
 | 
						||
 | 
						||
<div id='js-seed'>
 | 
						||
 | 
						||
```js
 | 
						||
function fibonacci(n) {
 | 
						||
  // Good luck!
 | 
						||
}
 | 
						||
 | 
						||
```
 | 
						||
 | 
						||
</div>
 | 
						||
 | 
						||
 | 
						||
 | 
						||
</section>
 | 
						||
 | 
						||
## Solution
 | 
						||
<section id='solution'>
 | 
						||
 | 
						||
```js
 | 
						||
// solution required
 | 
						||
```
 | 
						||
</section>
 |