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: 4 months 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 2 years ago)
- Default Branch: master
- Last Pushed: 2023-06-09T16:06:15.000Z (about 2 years ago)
- Last Synced: 2025-02-05T18:59:10.589Z (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).

## ⚒️ 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 ...
```