Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 752 Bytes

README.md

File metadata and controls

34 lines (28 loc) · 752 Bytes

Description

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 .

Go References:

Need to do:

General road map taken from LeetCode Road Map by Leetcode in the Beginner's Guide

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