RosettaCodeData/Task/Self-describing-numbers/PowerShell/self-describing-numbers-3.ps1
2026-04-30 12:34:36 -04:00

6 lines
174 B
PowerShell

11,2020,21200,321100 | ForEach-Object {
[PSCustomObject]@{
Number = $_
IsSelfDescribing = Test-SelfDescribing -Number $_
}
} | Format-Table -AutoSize