elements-of-programming-interviews
elements-of-programming-interviews copied to clipboard
ListNode 'get' method
Right now the get() method on ListNode starts indexing at 1, but it should maintain Java standards and start at 0.
This will require a large refactor to change all uses of the get method inside of the tests.