Use a one-dimensional dynamic array to solve the following problem. Read in 20 numbers, each of which is between 10 and 100, inclusive. As each number is input, print it only if it is not a duplicate of a number already input. Provide for the “worst case,” in which all 20 numbers are different.
What will be an ideal response?
```
1
2
3
4
5
6
7
8
9