easyJavaScript

Remove Duplicates from Array

Return a new array with duplicate values removed.
Ensure function signatures match starter code to run test cases.
index.js
Loading...

Test Case #1

Input: [1,2,2,3,3]

Expected: [1,2,3]

Solve Remove Duplicates from Array | Algorithmic Interview Drill