fibonacci-series
fibonacci-series copied to clipboard
This repository is to write program the famous Fibonacci series in as many different programming languages as we can.
In this code, i have implemented the Fibonacci sequence using direct formula
I have solved the question using 3 dp optimized soln 1. Top Down approach TC O(n) 2. Bottom Up approach TC O(n) 3. Space optimzation TC O(1)
Used a new approach to find fibonacci number in C++.
-Previously it finds the nth Fibonacci no. instead of printing it. I added a "for" loop for printing it. Also added image as proof of before and after.  ...
Added a new java code for fibonacci series, using recursion. It has safety checks, in case, the user enters invalid input. Screenshots attached below.   
This commit adds a recursive fibonacci program for the carbon-lang language.
Code for fibonacci series in fortran
The code was tested using the [Amstrand Emulator WinApe 2.0 Beta1](http://www.winape.net/downloads.jsp)   
Adding Fibonacci implementation in pl/sql 