Skip to content

Latest commit

 

History

History

removeDuplicatesFromList

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

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]