Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 366 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 366 Bytes

Algorithms

Implementation of well-known algorithms in C#. Some of those algorithms appear during software engineering interviews.

Data structures:

  • BST
  • Heap

Algorithms:

  • Find the longest polindromic substring

Sorting

  • HeapSort
  • MergeSort
  • QuickSort

Graphs

  • Find number of unique paths to move from one corner of a matrix to the other one