matthewsamuel95 / ACM-ICPC-Algorithms

Algorithms used in Competitive Programming
2.07k stars 1.26k forks source link

Create Fibonacci-Sequence.md #704

Closed VineetMalik14 closed 5 years ago

VineetMalik14 commented 5 years ago

This file is about the famous Fibonacci Sequence. It also contains a C program implementation of a code for printing the first 'n' elements of the sequence, by two different methods:

  1. Recursive Method
  2. Dynamic Programming Method