Here you'll find a collection of programming assignments to continue learning and practising:
For code assignments, we've provided a starter Java project.
Like you did when working on exercises:
- navigate to assignment's root folder,
- then run the provide tests.
They should all fail at first - since there is no implementation for them yet. You will provide that implementation. 😁
Example
To complete the Java Collections' assignment, navigate to the collections
homework folder.
cd collections
Then run the tests.
- If you're on a Linux, or Mac machine, run:
./mvnw clean test
- If you're on Windows, run this command instead:
mvnw.cmd clean test
Happy practising! 😄