fix(challenges): Formatted F challenges
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user