Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 486 Bytes

File metadata and controls

11 lines (8 loc) · 486 Bytes

Introduction to Algorithms Practice

Based on this prompt.

Current Contents

  • collatz.py: A simple collatz conjecture.
  • merge-sort.py: An implementation of a merge sort algorithm.
  • bubble-sort.py: An implementation of a bubble sort algorithm.
  • closest-pair.py: An implementation of the closest pair problem
  • sieve.py: The sieve of eratosthenes, used to find all prime numbers below 10 million or so.