Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 685 Bytes

README.md

File metadata and controls

22 lines (17 loc) · 685 Bytes

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

⚒️ Tests

  • To run all tests in the current directory and all its subdirectories:

    go test -v ./...

    *Note: Use the -v (verbose) flag for detailed execution information

  • To run all tests in certain directories:

    go test ./path/...
  • To run all tests on your $GOPATH:

    go test ...