We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12cecf7 commit a829b2dCopy full SHA for a829b2d
Maths/Fibonacci.ts
@@ -10,7 +10,6 @@
10
export const fibonacciValue = (number: number): number => {
11
if (number < 0) throw "Number should be greater than 0";
12
13
-
14
if (number === 0) return 0;
15
16
let a = 0, b = 1;
0 commit comments