Write a function to remove all duplicate numbers in the given list? function solve( a ){ //write your code here } Login to Submit
Input: [1, 1, 2, 3] Output: [1, 2, 3]