Repository to practice leetcode
problems
The entire project contains multiple packages. Each package is created based on the problem title. E.g., a problem titled as Two Sum
is placed in a package called two-sum
.
Each package contains -
- README file
- Golang source code
- Golang test code
- Running all tests
go test ./...
- Running a specific package tests `go test ./two-sum