add snippet fibsTillNum

This commit is contained in:
Rohit Tanwar
2017-12-22 16:52:25 +05:30
parent 61fd5710d2
commit 7a1295dc01

9
snippets/fibsTillNum.md Normal file
View File

@ -0,0 +1,9 @@
### fibsTillNum
Returns the number of fibonnacci numbers till num(0 and num inclusive)
```js
const fibsTillNum = num =>
Math.ceil(Math.log(num * Math.sqrt(5) + 1/2) / Math.log((Math.sqrt(5)+1)/2))// fibonacci(5) -> [0,1,1,2,3]
\\ fibsTillNum(10) -> 7
```