Hello again!

Last post of the day - honest!

I have a single dimension array that may contain duplicate data. For Example:

10
11
13
10
10
15
13

I need to display every unique entry so in this example the output would read:

10
11
13
15

I'm a bit stuck on how to do this

Any advice would be most appreciated.

Thanks.