Powershell、89バイト
"$args"-notmatch'(.)(.*)(.)'-or(($m=$Matches).1-ge$m.3-and(.\g(''+(+$m.1+$m.3)%10+$m.2)))
重要!スクリプトは自分自身を再帰的に呼び出します。スクリプトを次の名前で保存しますg.ps1
ファイル現在のディレクトリに。また、スクリプトファイルの代わりにスクリプトブロック変数を呼び出すこともできます(以下のテストスクリプトを参照)。その呼び出しは同じ長さです。
注1:スクリプトは、論理演算子-or
との遅延評価を使用し-and
ます。場合は、"$args"-notmatch'(.)(.*)(.)'
あるTrue
その後の右側の部分式-or
を評価されていません。また、if ($m=$Matches).1-ge$m.3
がFalse
の右部分式-and
も評価されません。したがって、無限の再帰を避けます。
注2:正規表現'(.)(.*)(.)'
は(.*)
デフォルトで貪欲であるため、開始および終了アンカーは含まれません。
テストスクリプト
$g={
"$args"-notmatch'(.)(.*)(.)'-or(($m=$Matches).1-ge$m.3-and(&$g(''+(+$m.1+$m.3)%10+$m.2)))
}
@(
,(2632, $true)
,(92258, $true)
,(60282, $true)
,(38410, $true)
,(3210, $true)
,(2302, $true)
,(2742, $true)
,(8628, $true)
,(6793, $true)
,(1, $true)
,(2, $true)
,(10, $true)
,(100, $true)
,(55, $true)
,(121, $true)
,(6724, $false)
,(47, $false)
,(472, $false)
,(60247, $false)
,(33265, $false)
,(79350, $false)
,(83147, $false)
,(93101, $false)
,(57088, $false)
,(69513, $false)
,(62738, $false)
,(54754, $false)
,(23931, $false)
,(7164, $false)
,(5289, $false)
,(3435, $false)
,(3949, $false)
,(8630, $false)
,(5018, $false)
,(6715, $false)
,(340, $false)
,(2194, $false)
) | %{
$n,$expected = $_
#$result = .\g $n # uncomment this line to call a script file g.ps1
$result = &$g $n # uncomment this line to call a script block variable $g
# the script block call and the script file call has same length
"$($result-eq-$expected): $result <- $n"
}
出力:
True: True <- 2632
True: True <- 92258
True: True <- 60282
True: True <- 38410
True: True <- 3210
True: True <- 2302
True: True <- 2742
True: True <- 8628
True: True <- 6793
True: True <- 1
True: True <- 2
True: True <- 10
True: True <- 100
True: True <- 55
True: True <- 121
True: False <- 6724
True: False <- 47
True: False <- 472
True: False <- 60247
True: False <- 33265
True: False <- 79350
True: False <- 83147
True: False <- 93101
True: False <- 57088
True: False <- 69513
True: False <- 62738
True: False <- 54754
True: False <- 23931
True: False <- 7164
True: False <- 5289
True: False <- 3435
True: False <- 3949
True: False <- 8630
True: False <- 5018
True: False <- 6715
True: False <- 340
True: False <- 2194
Powershell、90バイト
再帰なし。ファイル名の依存関係およびスクリプトブロック名の依存関係はありません。
for($s="$args";$s[1]-and$s-ge$s%10){$s=''+(2+$s[0]+$s)%10+($s|% S*g 1($s.Length-2))}!$s[1]
Powershellは、右側のオペランドを左側のオペランドのタイプに暗黙的に変換します。したがって、左のオペランドの型はであるため、$s-ge$s%10
右のオペランドを$s%10
asとして計算integer
し、aと比較します。また、左のオペランドが整数であるため、文字と文字列を変換します。string
string
2+$s[0]+$s
$s[0]
$s
integer
2
$s|% S*g 1($s.Length-2)
へのショートカットです$s.Substring(1,($s.Length-2))