Programming Challenge 3


Description

Create a class wrapping around a dynamically sized array of integers. Use RAII to manage the class. In this first case, do not use smart pointers or data structures from the standard library. Then, make a second version of your class that uses std::unique_ptr. Provide methods for adding data, removing data, and accessing data. Write a simple test program to verify accuracy.

Details