Skip to content

Instantly share code, notes, and snippets.

@omermuneer
Created August 31, 2015 06:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save omermuneer/322b7ced1fc51024efbe to your computer and use it in GitHub Desktop.
Save omermuneer/322b7ced1fc51024efbe to your computer and use it in GitHub Desktop.
comp303 - 31aug15
Algorithms Mid - Training!
Solution by Dr. Atif Alvi
Dated: August, 31 2015 (Fall 2015)
Course: Design and Analysis of Algorithms
Course Code : Comp 303
_________________________________________
#Standard Deviation
It is a measure that is used to quantify the amount of variation or dispersion of a set of data values
MDCCCCXXXXVII - 1947
MCMXLVII - 1947
Fibonacci inception through rabbit production!
0 - no rabbit pair
1 - 1 pair - 1st month
1 - 1 pair - 2nd month
2 - 2 pair - 3rd month
3 - 3 pair - 4th month
5 - 5 pair - 5th month
8 - 8 pair - 6th month
13
Series: nth = (nth-1) + (nth-2)
8th = (8-1) + (8-2)
= (7) + (6)
Fibonacci n = (n-1) + (n-2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment