The assignment asks you to write a Java class called `IntListMethods` that provides four methods: `getAuthorName`, `getRyersonID`, `removeIfDivisible`, and `sort`. The `removeIfDivisible` method removes all nodes in a linked list whose keys are divisible by a given number, returning the index of the first node in the resulting chain. The `sort` method rearranges the nodes in a linked list so that their keys are in sorted ascending order, also returning the index of the first node in the sorted chain. The project is graded for correctness and execution time, with a secret SEED used to test submissions.