Skip to content

Latest commit

 

History

History
27 lines (15 loc) · 771 Bytes

File metadata and controls

27 lines (15 loc) · 771 Bytes

🏆 LeetCode Solutions in Go

This repository contains my LeetCode algorithm and data structure solutions implemented in Go.
It serves as a practice ground to improve problem-solving skills, learn Go best practices, and track my progress over time.


📊 Progress

Easy Medium Hard


✅ Running Tests

All solutions now have corresponding Go test files (*_test.go). You can run all tests from the root folder:

go test -v ./...

Or test a specific problem folder:

go test -v ./easy/TwoSum

This will automatically find all _test.go files and run the tests for all solutions.