SimpleArrayList get and set
Geoffrey Challen // 2020.10.0
Let's begin building a simple list implementation that uses arrays to store the values.
Create a class SimpleArrayList with a public constructor that initializes the list using a passed non-nullable
array of Any? references.
Your array should be private.
Next, implement:
fun get(Int): Any, which takes anIntindex and returns theAnyat that indexfun set(Int, Any?), which takes anIntindex and anAnyreference and sets that value at the index to the passed reference.
Both your get and set method should require that the index passed is valid for that SimpleArrayList.
Here's an example of how your SimpleArrayList should work:
Don't overthink this! Both get and set should be two lines of code (including one for the require).