Created
August 31, 2015 06:25
-
-
Save omermuneer/322b7ced1fc51024efbe to your computer and use it in GitHub Desktop.
comp303 - 31aug15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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