Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 769 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 769 Bytes

The Algorithms

All Algorithms implemented in C++/Python

Sorts:

Peak finder:

  • Peak finder 1D: C++, Python
  • Peak finder 2D: C++, Python

Find maximum subarray:

  • Find maximum subarray: C++, Python

Mathematics:

  • Matrix multiplication:
    • Loops (brute-force): C++, Python
    • Falk's scheme: C++, Python

Leetcode problems:

Reference:

  • MIT 6.006 - Introduction to Algorithms