RosettaCodeData/Task/Remove-duplicate-elements/Elena/remove-duplicate-elements.elena

14 lines
271 B
Text
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
import extensions;
import system'collections;
import system'routines;
2018-06-22 20:57:24 +00:00
2019-09-12 10:33:56 -07:00
public program()
{
2020-02-17 23:21:07 -08:00
var nums := new int[]::(1,1,2,3,4,4);
2019-09-12 10:33:56 -07:00
auto unique := new Map<int, int>();
2018-06-22 20:57:24 +00:00
2019-09-12 10:33:56 -07:00
nums.forEach:(n){ unique[n] := n };
2018-06-22 20:57:24 +00:00
2019-09-12 10:33:56 -07:00
console.printLine(unique.MapValues.asEnumerable())
}