“Array Differenz PowerShell” Code-Antworten

Array Differenz PowerShell

$Yellow   = [Int[]][Linq.Enumerable]::Except($a, $b)
$Blue     = [Int[]][Linq.Enumerable]::Except($b, $a)
$Green    = [Int[]][Linq.Enumerable]::Intersect($a, $b)
$NotGreen = [Int[]]([Linq.Enumerable]::Except($a, $b) + [Linq.Enumerable]::Except($b, $a))
Asif A

Array Differenz PowerShell

PS C:\> $Yellow
1
2
3
Asif A

Array Differenz PowerShell

$a = 1..5
$b = 4..8
Asif A

Array Differenz PowerShell

PS C:\> $Blue
6
7
8
Asif A

Ähnliche Antworten wie “Array Differenz PowerShell”

Fragen ähnlich wie “Array Differenz PowerShell”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen