Write a program to find and print all unique elements of a given array of integers.
Example :
Input array: 1 5 7 5 8 9 11 11 2 5 6
Unique elements of the said array: 1 5 7 8 9 11 2 6
 Published By : Swapnil M
                                
                            Write a program to find and print all unique elements of a given array of integers.
Example :
Input array: 1 5 7 5 8 9 11 11 2 5 6
Unique elements of the said array: 1 5 7 8 9 11 2 6