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.
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.