DEV Community

Discussion on: JavaScript Katas: Remove duplicates

Collapse
 
pentacular profile image
pentacular

Because in the data structure Set a value may only occur once, this solves our problem too.

This isn't sufficient, since you require the order to be preserved.
Fortunately Sets are iterated in insertion order ... :)

But this isn't generally a property of sets, so it's worth noting.

Collapse
 
miku86 profile image
miku86

Hey pentacular,

thank you, I just updated the section.