Changed bold to strong or code tags where possible
This commit is contained in:
@@ -6,10 +6,10 @@ challengeType: 5
|
||||
|
||||
## Description
|
||||
<section id='description'>
|
||||
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.
|
||||
Write a function to generate the <code>n<sup>th</sup></code> Fibonacci number.
|
||||
The <code>n<sup>th</sup></code> Fibonacci number is given by:
|
||||
<code>F<sub>n</sub> = F<sub>n-1</sub> + F<sub>n-2</sub></code>
|
||||
The first two terms of the series are 0 and 1.
|
||||
Hence, the series is: 0, 1, 1, 2, 3, 5, 8, 13...
|
||||
</section>
|
||||
|
||||
|
Reference in New Issue
Block a user