Star coder challenger : propose the best code to do the following | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

Star coder challenger : propose the best code to do the following

We have Fib(1)=1, Fib(0)=1 and Fib(n)=Fib(n-1)+Fib(n-2) for n>=2 The challenge is to propose the best code to calculate Fib(n). You think this is too easy for you or you already did it ? Think again about how good your code is and propose your best solution, you'll be surprised...

14th Aug 2017, 10:52 AM
VcC
VcC - avatar
17 Answers
14th Aug 2017, 12:28 PM
Baptiste E. Prunier
Baptiste E. Prunier - avatar
+ 2
Yeah, quickest but it loses in precision :)
14th Aug 2017, 6:33 PM
Baptiste E. Prunier
Baptiste E. Prunier - avatar
+ 2
@swim quite cool ! But it is not possible to use it with user input :/
14th Aug 2017, 7:43 PM
Baptiste E. Prunier
Baptiste E. Prunier - avatar
+ 2
@VcC, I think that both your complex solution and the linear solution are the best (speed speaking). But respecting the KISS (keep it simple stupid) principle is something really important for maintainability purpose. What if, now, your superior ask you for U(n)=U(n-1)/2+2*U(n-2) ? And your simple recursion is not the best recursive function as it creates and use a list. Go check mine, using tail recursion is a way better solution (when possible) with resistivity. It avoids StackOverflow problem and is still a "one call" recursive solution.
15th Aug 2017, 8:17 AM
Baptiste E. Prunier
Baptiste E. Prunier - avatar
+ 1
Hum, nice then !
14th Aug 2017, 6:40 PM
Baptiste E. Prunier
Baptiste E. Prunier - avatar
0
Hum ... Apart from really small optimisation, I do not know how :/
14th Aug 2017, 1:42 PM
Baptiste E. Prunier
Baptiste E. Prunier - avatar
0
So far you are the best, though :-)
14th Aug 2017, 2:23 PM
VcC
VcC - avatar
0
Baptist you won this one. But look here for the quickest solution - by solving the recursion you can make a closed function. Also this codz compares the low efficiency of recursive versions (can be optimized by recursing on a couple of values). https://code.sololearn.com/c3Z8gCT6JqBJ/?ref=app
14th Aug 2017, 6:24 PM
VcC
VcC - avatar
0
Up to high n it gives the exact answer. You can use python's decimal package with infinite precision. For very high N there might be a log(n) algorithm based on fast exponentiation of polynomials f(sqrt(5)).
14th Aug 2017, 6:37 PM
VcC
VcC - avatar
0
Sure. Except linear and closed formula the rest where just directional examples of different styles. But recursion is VERY often excessively time consuming. Of course since a dev costs per year the equivalent of 10 PCs you might prefer an average dev and more PCs ;-)
15th Aug 2017, 8:53 AM
VcC
VcC - avatar
0
@VcC, wrong ! Tail recursion is about the same as iteration in resource cost :)
15th Aug 2017, 10:52 AM
Baptiste E. Prunier
Baptiste E. Prunier - avatar
0
In complexity yes. In overhead and stack manipulation, not so compared to a simple loop.
15th Aug 2017, 12:38 PM
VcC
VcC - avatar
0
But tail recursion has not the classical recursion's stack manipulation as nothing more than the result of the recursive call is returned ^^
15th Aug 2017, 1:31 PM
Baptiste E. Prunier
Baptiste E. Prunier - avatar
- 1
Nice one. Can still be optimized !
14th Aug 2017, 1:13 PM
VcC
VcC - avatar
- 1
For low values of n no problem. But you will have lots of recursive calls. See the python version for dryer version !
14th Aug 2017, 7:30 PM
VcC
VcC - avatar
- 1
Yes but the design is not good - lots of computation power lost in recursion. 100x cost factor compared to the best options.
14th Aug 2017, 8:32 PM
VcC
VcC - avatar
- 1
It is not complex. You have several versions of the same code and a time of execution benchmark. The linear version very simple. And Imho double recursion is really not a good design - one that should never be done. def fiblinear(p:int): prec,res=1,1 for i in range(2,p): prec,res=res,prec+res return(res)
14th Aug 2017, 10:35 PM
VcC
VcC - avatar