This repository contains my solutions to various LeetCode problems, implemented in Go. Each problem is located in its own directory within the tasks/
folder, along with its original description and examples.
The repository is organized as follows:
.
├── LICENSE
├── Makefile
├── README.md
├── TODO.md
└── tasks/
├── merged-sorted-array/
│ ├── go.mod
│ ├── main.go
│ └── README.md
├── remove-duplicates-from-sorted-array/
│ ├── go.mod
│ ├── main.go
│ └── README.md
└── remove-elements/
├── go.mod
├── main.go
└── README.md
Use the commands from the Makefile
make execute_exercise exercise="remove-duplicates-from-sorted-array-2"
Contributions are welcome. If you have a better solution or want to add a new problem, feel free to open a pull request.
This project is licensed under the MIT License. See the LICENSE
file for more details.