- Fixed Q5 test, case3 & case4. @Jonathan Yahav
- Added instructions regarding how to execute the program on nova with the new package hierarchy that we didn't have until this HW.
- Clone your project as usual.
- Go inside the deepest folder (
ex4
) usingcd
command. - Run
javac *.java
. - Go back to
src
folder (be inside it).
- You can go back one folder at a time using
cd ..
.- Why
src
folder? If you'll notice there is a linepackage il.ac.tau.cs.sw1.ex4;
on top of our files.- When you run
ls
the output should beil
.
- Run
java il.ac.tau.cs.sw1.ex4.WordPuzzleTester
.
- I encountered many "grey areas" from reading the instructions and I didn't know for sure if I can assume the input is valid or not, so I've added "Lechomra" tests.
- If you find mistakes, please let me know and I'll fix them.
- If you think of tests that check uncovered parts, send them to me and I'll add it here, credit will be given below.
- Jonathan Yahav