A collection of LeetCode problem solutions implemented in Go.
This project is currently under development. We are actively working on adding solutions to various LeetCode problems. Contributions are welcome!
Solutions will be organized [Details TBD - e.g., by problem number, difficulty, or category]. Each solution should ideally include:
- The Go source code for the solution.
- Unit tests to verify correctness and cover edge cases.
- A brief explanation of the approach if necessary.
(This section will be updated as the project evolves.)
We welcome contributions to expand this collection of LeetCode solutions! If you'd like to contribute, please follow these general steps:
- Fork the repository.
- Create a new branch for your solution (e.g.,
feat/problem-name
orsolve/problem-123
). - Add your solution in Go, ensuring it's well-commented.
- Include unit tests for your solution in a corresponding
_test.go
file. - Ensure your code is formatted using
gofmt
. - Submit a pull request to the
main
branch for review.
Please make sure your contributions adhere to the project's coding standards (if any are established) and include clear commit messages.
This project is licensed under the Apache License 2.0. See the LICENSE file for details.