# short-exercises Source templates for short exercises during the lecture, sometimes with tests. ## Overview: Templates are within `src/main/scala`. Parts that you should complete are usually marked with `???`. | lecture | package | |---------------------------------|-------------------------------------------------------------------| | 2: Functional Data Structures | [`datastructures`](src/main/scala/datastructures) | | 3: Error Handling | [`errors`](src/main/scala/errors) | ## Usage tips: To keep your local solutions to the exercises when pulling from the repository, use ```shell git pull --rebase --autostash ``` This will keep both commited and uncommited changes. If you are using Intellij IDEA, "rebase" is available as option in the update dialog and stashing is default.