5 lines
58 B
PowerShell
5 lines
58 B
PowerShell
$h = @{}
|
|
foreach ($x in $data) {
|
|
$h[$x] = 1
|
|
}
|
|
$h.Keys
|