Programming Assignment:
Warm Up and Stretching

Grading Rubric

70 points total

Correctness - 59 points

— Points as shown in the JUnit tests for Anagram, ComparingShapes, Euclid, SortedLinkedList, Maps, PriorityQueue, and Search
— no points for the DoublyLinkedList JUnit test (since you did not write the code that it tests)

Style - 11 points

Use:

 
return x > 0;

rather than

if (x > 0) {
   return true;
} else {
return false;
}