Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 405 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 405 Bytes

math-algorithms

Math Algorithms

Primes

Sieve of Eratosthenes - prime number generator

Fibonacci

Fibonacci(n) - recursive method
FibonacciDP(n) - iterative method

Catalan

Catalan(n) - recursive method
CatalanDP(n) - iterative method

Running code locally

  1. Type the 'gulp' command in the project root directory to build. (https://gulpjs.com/)
  2. Type 'node .\dist\main.js' to test.