Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/deanlogan/leetcode
My leetcode answers
https://github.com/deanlogan/leetcode
go golang leetcode
Last synced: about 2 months ago
JSON representation
My leetcode answers
- Host: GitHub
- URL: https://github.com/deanlogan/leetcode
- Owner: DeanLogan
- Created: 2024-02-23T21:54:31.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-11-04T21:22:35.000Z (2 months ago)
- Last Synced: 2024-11-04T22:26:19.426Z (2 months ago)
- Topics: go, golang, leetcode
- Language: Go
- Homepage:
- Size: 4.52 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LeetCode Problems Solutions
This repository contains my solutions for various problems from [LeetCode](https://leetcode.com/). You can also visit my LeetCode profile [here](https://leetcode.com/u/DeanLogan/)
## Structure
Each problem has its own directory, named after the problem's title. Inside each directory, you'll find a file with the solution code, as well as a README file that has the problem description and a png of the runtime and memory usage of the solution.
## Usage
To run a solution, enter the folder (problems name) followed by `solution.go` command. For example:
```sh
go run ./contains-duplicate/solution.go
```Or
```sh
go run ./k-frequency/solution.go
```