Problem Statment
A sorted array **arr**of size **n** is given .
Print the new array **arr[]** with no duplicate element.
Constraints:
1 <= N <= 10^6
0 <= A <= 10^6
Input Format
[1,2,2,4,5,5,6]
Output Format
[1,2,4,5,6]