WAP to remove all duplicate elements from an unsorted Array.
Input arr[]= {10,30,25,5,10,5,40}
Output= {10,30,25,5,40}
Please donot use any predefined library.
Published By : Suraj Ghimire
WAP to remove all duplicate elements from an unsorted Array.
Input arr[]= {10,30,25,5,10,5,40}
Output= {10,30,25,5,40}
Please donot use any predefined library.