Fork this project, and complete the list class
For MyArrayList:
- Complete add(o) (unit test 1 and 2 should pass)
- Complete expand() (unit tests 1, 2, and 3 should pass)
- Complete add(i, o) (all 4 unit tests should pass)
For MyLinkedList:
- Complete the get() method (unit test 1 and 2 should pass).
- Complete the add(i, E) method (unit tests 1 - 3 should pass).