Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 380 Bytes

File metadata and controls

11 lines (8 loc) · 380 Bytes

In this Kata, you will remove the left-most duplicates from a list of integers and return the result.

Example

# Remove the 3's at indices 0 and 3
# followed by removing a 4 at index 1
solve([3, 4, 4, 3, 6, 3]) # => [4, 6, 3]