Skip to content

Latest commit

 

History

History

simpleRemoveDuplicates

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Simple remove duplicates

7 kyu link to kata
my solution

Remove the duplicates from a list of integers, keeping the last ( rightmost ) occurrence of each element.

Example:

For input: [3, 4, 4, 3, 6, 3]

remove the 3 at index 0 remove the 4 at index 1 remove the 3 at index 3 Expected output: [4, 6, 3]

More examples can be found in the test cases.

Good luck!