Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/ernanej/aed-i
- Owner: ErnaneJ
- Created: 2023-03-11T15:53:32.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-06-09T16:06:15.000Z (over 1 year ago)
- Last Synced: 2024-06-21T19:56:32.294Z (5 months ago)
- Topics: algorithms-and-data-structures, dca0208, education, ufrn
- Language: Go
- Homepage: https://github.com/eduardolfalcao/edi
- Size: 266 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 ...
```