Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/ernanej/aed-i

Exercises and notes referring to the study of the lecture notes presented in the discipline of Algorithms and Data Structures I, offered by the Department of Computer Engineering and Automation.
https://github.com/ernanej/aed-i

algorithms-and-data-structures dca0208 education ufrn

Last synced: 24 days ago
JSON representation

Exercises and notes referring to the study of the lecture notes presented in the discipline of Algorithms and Data Structures I, offered by the Department of Computer Engineering and Automation.

Awesome Lists containing this project

README

        

# Data Structures and Algorithms (DCA0208)

Exercises and notes referring to the study of the lecture notes presented in the discipline of Algorithms and Data Structures I, offered by the Department of Computer Engineering and Automation (UFRN).

![example workflow](https://github.com/ernanej/ed-i/actions/workflows/goTests.yml/badge.svg)

## ⚒️ Tests

- To run all tests in the current directory and all its subdirectories:
```bash
go test -v ./...
```
*_Note: Use the `-v` (verbose) flag for detailed execution information_

- To run all tests in certain directories:
```bash
go test ./path/...
```
- To run all tests on your $GOPATH:
```bash
go test ...
```