**THIS IS AN IN CLASS EXCERCISE AND WILL NOT DIRECTLY AFFECT YOUR GRADE**

* Your solutions will be evaluated by the TAs to judge your knowledge of the material so please write neatly and keep your solution organized.

Problem #1: Create a diagram which displays a stack being created with the values: 7, 1, 28, 13, and 10 added in the order given (show all of your steps).

Problem #2: Create a diagram which displays the value 5 being inserted in the list created in Problem #1 between 28 and 13 (show all of your steps).

Problem #3: Create a diagram which displays the value 13 being removed from the list in Problem #2 (show all of your steps).

Problem #4: Create a diagram which displays the value 10 being removed from the list in Problem #3 (show all of your steps).

Problem #5: Recursively and iteratively create the method public void removeDuplicates(Stack list). The method will search the list and remove any duplicate data values. Create a diagram which displays the process of removing the duplicates (show all of your steps).