My collection of algorithms implemented in go
- BubbleSort
- MergeSort
- SelectionSort
- QuickSort
- Breadth First Search - (Maze Solver -> Shortest path)
- Depth First Search - (Graphs, pass through all graphs without repeating)
- Dijkstra - (Graphs, calculates the distance between first node and all nodes)
- Balanced Parenthesis
- LetterCombination
- find Median Sorted Arrays
- Largest Common Prefix
- Reverse Number
- isValid Parenthesis
- Two Sum
- AddTwoNumbers
- Double Linked List (C)
- Binary Search