26. Remove Duplicates from Sorted Array
Problem 26.
Remove duplicate from sorted array
intuition.
We solve the problem in the optimized way . using for loop and else-if conditional statement
solution .
Firstly we traversed the whole array and then we check is first element is same to the n...
vivblog.hashnode.dev1 min read