Community Profile

photo

Dhiraj Darji


Last seen: ungefär 2 år ago Active since 2022

Followers: 0   Following: 0

Statistics

  • First Answer

View badges

Feeds

View by

Answered
Building the Fibonacci using recursive
function f= fibor(n) if n<=2 f=1; else f=fibor(n-1)+fibor(n-2); end This is working very well for small numbers bu...

ungefär 2 år ago | 0