Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 398 Bytes

File metadata and controls

16 lines (13 loc) · 398 Bytes

Remove duplicates from list

8 kyu link to kata
my solution

Define a function that removes duplicates from an array of non negative numbers and returns it as a result.

The order of the sequence has to stay the same.

Examples:

Input -> Output
[1, 1, 2] -> [1, 2]
[1, 2, 1, 1, 3, 2] -> [1, 2, 3]