説明
3つの部分に分割され、すべての部分の数字が合計されて同じ数になる場合、少なくとも3桁のトリプルバランスの整数を考慮します。次のように番号を分割します。
abcdefghi - Standard case: the number of digits is divisable through 3:
abc def ghi
abcdefgh - Number % 3 == 2: The outer groups are both assigned another digit
abc de fgh (the inner group will have one digit less than both outer groups)
abcdefghij - Number % 3 == 1: The inner group is assigned the extra digit
abc defg hij (the inner group will have one digit more than the outer groups)
チャレンジ
あなたの仕事は、少なくとも3桁の整数を与えられ、与えられた数がトリプルバランスかどうかを決定し、その結果に基づいて真実または偽の値を出力するプログラムを書くことです。
テストケース
333 -> True
343 -> False
3123 -> True
34725 -> True
456456 -> False
123222321 -> True
これはcode-golfなので、標準の抜け穴が適用され、バイト単位の最短回答が勝つかもしれません!
when split in three parts,