All of these algorithms are my solutions to LeetCode Problems in Go
Compile via root directory with: % go mod tidy
Run go with: % go run .
General road map taken from LeetCode
Data Stuctures:
- Arrays - Comfortable with, ok to skip for now
- Linked Lists - Need more practice
- Hash Tables - Need more practice
- Queues and Stacks - Need more practice
- Binary Trees
- Queues and Stacks
- Sets
- Heaps
- Tries
- Graphs
Algorithms:
- Recursion
- Bit Arithmetic
- Binary Search
- Sorting Algorithms
- Dynamic Programming