fix(challenges): Formatted F challenges

This commit is contained in:
Kris Koishigawa
2019-03-02 21:27:55 +09:00
committed by mrugesh
parent 1a56a5b0ae
commit abbfee1189
8 changed files with 117 additions and 114 deletions

View File

@@ -6,12 +6,11 @@ challengeType: 5
## Description
<section id='description'>
<p>Write a function to generate the <big> n<sup>th</sup> </big> Fibonacci number.</p>
///<p>The <big> n<sup>th</sup> </big> Fibonacci number is given by :
///<p>F<sub>n</sub> = F<sub>n-1</sub> + F<sub>n-2</sub></p>
///<p>The first two terms of the series are 0, 1.</p>
///<p>Hence, the series is : 0, 1, 1, 2, 3, 5, 8, 13...</p>
///
Write a function to generate the <big>n<sup>th</sup></big> Fibonacci number.
The <big>n<sup>th</sup></big> Fibonacci number is given by:
F<sub>n</sub> = F<sub>n-1</sub> + F<sub>n-2</sub>
The first two terms of the series are 0, 1.
Hence, the series is: 0, 1, 1, 2, 3, 5, 8, 13...
</section>
## Instructions