https://github.com/knands42/algorithms-data-structure-go
A place to put all my solved algorithm exervices and data structure in Golang
https://github.com/knands42/algorithms-data-structure-go
algorithms data-structures golang
Last synced: 10 months ago
JSON representation
A place to put all my solved algorithm exervices and data structure in Golang
- Host: GitHub
- URL: https://github.com/knands42/algorithms-data-structure-go
- Owner: knands42
- Created: 2022-12-20T03:00:51.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-04-23T20:46:22.000Z (almost 3 years ago)
- Last Synced: 2025-02-24T03:18:01.547Z (about 1 year ago)
- Topics: algorithms, data-structures, golang
- Language: Go
- Homepage:
- Size: 52.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Algorithms-Data-Structure-Go
A place to put all my solved algorithm exervices and data structure in Golang
## Running golang code
#### Running on the command line
```bash
# Run all tests
go test -v ./...
# Run specific test by name
go test -v ./... -run
# Run specific test by file
go test -v .go
```
#### Running on the IDE (vscode)
1. Install the golang plugin
2. Just click on the green arrow next to the test function
