@@ -7,8 +7,13 @@ with the code base and what we changed.
77
88### Base
99
10- First, to give everyone the same starting point, we replaced the code
11- you have previously written with the reference solution.
10+ First, to give everyone the same starting point and to allow people to skip the course,
11+ we replaced the code you have previously written with the reference solution.
12+
13+ Your code is not lost though. If you want to continue working with your precious implementation,
14+ just open the files from the previous section in the project explorer and copy over the code.
15+ This is especially important when you spend a lot of time polishing during the course
16+ already and went the extra mile.
1217
1318### Simulation
1419
@@ -72,7 +77,7 @@ Also, the automated tests will most likely fail otherwise.
7277First and foremost, the main objective of the assignment is to ensure that everyone arrives at their destination.
7378As simple as this sounds, this can already be a tough challenge on itself.
7479
75- To make your life easy, we abort your code in such a case , and you will see an error message:
80+ To make your life easy, we abort your code if it seems to be stuck , and you will see an error message:
7681
7782``` java
7883if (stepCount >= 100_000 ) {
@@ -155,9 +160,12 @@ here is a list of stuff that you can optionally implement or think about:
155160 and compare the performance. Try to also support a building with mixed elevator types.
156161* Create a JavaFX or Swing GUI for the visualization, replacing the ASCII ` View.java ` .
157162
163+ Of course, implementing any of these bonus tasks will also give you higher chances
164+ to win the contest 👌
165+
158166## How to submit
159167
160- The event runs for two weeks. Until then, please submit your solution per DM to any of the
168+ Please submit your solution before the event ends per DM to any of the
161169moderators of Together Java.
162170
163171The easiest way to share your results is by just zipping the whole project folder. Alternatively,
@@ -167,8 +175,13 @@ you can also just send us the source code for the files you changed. At minimum,
167175* ` Elevator.java `
168176* ` Human.java `
169177
178+ You can also upload your files to _ pastebin_ or the entire project to _ GitHub_ .
179+
170180We will accept any format, as long as it is clear what you have changed in the source code.
171181
182+ While the event is still ongoing, please do not promote your solution openly in the server
183+ though to not ruin the event for others.
184+
172185## Need help
173186
174187If you have trouble solving the tasks, or something is just unclear to you,
0 commit comments