/goleet

Primary LanguageGo

Goleet

Leetcode solutions with Go!

How does everything work?

Devcontainers is used for development setup. A script installs necessary dependencies after container is built.

Tests are generated with gotests & ran in watch mode with Go Watch (gow)

gow test two-sum.go two-sum_test.go

Want to try it out?

Fork the repository and use on Github Codespaces or your local machine with Docker & Visual Studio Code

ID Name Difficulty Tags
1 Two Sum easy array
121 Best Time to Buy and Sell Stock easy array
509 Fibonacchi Number easy recursion, implementation
55 Jump Game medium dp, greedy