Changed bold to strong or code tags where possible

This commit is contained in:
Kris Koishigawa
2019-06-14 20:04:16 +09:00
committed by mrugesh
parent 3ce97bbd81
commit 1028310819
40 changed files with 175 additions and 177 deletions

View File

@@ -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>