The main purpose of this project is to generate binomial coefficients, or values from Pascal's triangle. The repo contains four files:
- Pascal.py
- PrintingTriangles.py
- Testing.py
- Analysis.txt
- "slow" function for computing binomial coefficients
- get_binom_coeff
- "fast" function for computing binomial coefficients
- fast_binom_coeff
- functions for printing lines of Pascal's triangle
- functions for "pretty" printing lines of Pascal's triangle
- pretty printing is not yet functional
- code for functions used to test time effiency of functions in Pascal.py
- also contains results (commented out)
- Write up comparing efficiency of get_binom_coeff and fast_binom_coeff