An open API service indexing awesome lists of open source software.

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

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
![image](./assets/snapshot_test.png)