RosettaCodeData/Task/Remove-duplicate-elements/Ceylon/remove-duplicate-elements.ceylon

3 lines
134 B
Ceylon
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
<String|Integer>[] data = [1, 2, 3, "a", "b", "c", 2, 3, 4, "b", "c", "d"];
<String|Integer>[] unique = HashSet { *data }.sequence();