その数の音節はいくつですか?


15

英語で話したときに、数字を取得して、その中に音節がいくつあるかを知りたいです。

これを1,000未満の正の整数に制限しましょう。

私はイギリス人なので、その後にゼロ以外の数字がある場合は、数百の列の後に「and」を付けます。

チャレンジ

  • 1000より小さい正の整数を受け入れ、イギリス英語でその数を表す単語の音節の数を出力するコードを記述します。
  • 数字を表す単語を生成する必要はなく、含まれる音節の数のみを生成します。
  • これはコードゴルフです。これを最小限のバイトで達成しようとします。
  • 好きな言語を使用してください。
  • 標準の抜け穴は禁止されています。

テストケース

|  N  | In words                             | Syllables |
|   1 | one                                  |         1 |
|   2 | two                                  |         1 |
|   3 | three                                |         1 |
|   4 | four                                 |         1 |
|   5 | five                                 |         1 |
|   6 | six                                  |         1 |
|   7 | sev-en                               |         2 |
|   8 | eight                                |         1 |
|   9 | nine                                 |         1 |
|  10 | ten                                  |         1 |
|  11 | el-ev-en                             |         3 |
|  12 | twelve                               |         1 |
|  13 | thir-teen                            |         2 |
|  14 | four-teen                            |         2 |
|  17 | se-ven-teen                          |         3 |
|  20 | twen-ty                              |         2 |
|  21 | twen-ty one                          |         3 |
|  42 | four-ty two                          |         3 |
|  73 | sev-en-ty three                      |         4 |
|  77 | sev-en-ty sev-en                     |         5 |
| 100 | one hund-red                         |         3 |
| 110 | one hund-red and ten                 |         5 |
| 111 | one hund-red and el-ev-en            |         7 |
| 555 | five hund-red and fif-ty five        |         7 |
| 700 | sev-en hund-red                      |         4 |
| 770 | sev-en hund-red and sev-en-ty        |         8 |
| 777 | sev-en hund-red and sev-en-ty sev-en |        10 |
| 999 | nine hund-red and nine-ty nine       |         7 |

1
入力を文字列または数字の配列として取得できますか?
デニス

回答:


11

パイソン284の 83 74 67バイト

lambda n:4*(n>99)+2-n%~9/9-0x55561aaaab/4**(n%100)%4+`n`.count('7')

9 x 16バイトのゴルフをしてくれた@xnorに感謝します!

オンラインでお試しください!


Python 2、79バイト

lambda n:4*(n>99)+([-1]+10*[1]+[3,1]+7*[2]+8*([2]+9*[3]))[n%100]+`n`.count('7')

簡単ですが、長いです。

オンラインでお試しください!


83バイトのソリューションでは、最後のビットをに変更-10~9て切り替えることで3バイトを削減できますが+(0<n%100!=12)-(n%100!=11)、それでも新しいソリューションよりも長くなります。
xnor


@xnorそれは本当に賢いです!min(n%100,13)%12/~9ゼリーの答えにも私が試みていたアプローチで実際に役立つかもしれません。
デニス

実際、ハードコードされた定数に物を押し込むだけで短くなります。
xnor

@xnorありがとうございます!
デニス

8

Perl 5、53 -pバイト

$_=4*/.../+2*/[^0].$/+!/0$/+y/7//-/1[^1]$/-/12$/-/00/

オンラインでお試しください!

どうやって

-p commandline flag reads input into $_

$_=4*/.../     # Hundreds place has minimum of 4 sylables (__ HUN-DRED AND),
               # match fails on number <100, and would add 0 here
  +2*/[^0].$/  # Tens place has two syllables if not 0 (__-TY or __TEEN),
               # match fails on numbers <10, and would add 0
  +!/0$/       # Ones place has one syllable if not 0 (__)
               # -- Now adjust for special cases --
  +y/7//       # add a syllable for every 7 present
  -/1[^1]$/    # remove a syllable for 10-19, except 11
  -/12$/       # remove another syllable for 12
  -/00/        # remove the syllable for AND if it's an even hundred

-p commandline flag outputs contents of $_


7

パイソン2112の 108バイト

f=lambda n:n>99and f(n/100)+3+f(n%100)-(n%100<1)or n>19and f(n/10)-~f(n%10)or int("01111112111312222322"[n])

オンラインでお試しください!

-4バイト、Shaggyのおかげ


2
また、の[2]*7部分は172(sev-en-teen)ではなく3でなければならないため、失敗します。
ケビンクルーッセン

2
-4バイト、17の修正を含む。
シャギー

@Shaggyありがとう:)
TFeld

@KevinCruijssen修正済み(Shaggyに感謝)
TFeld


6

Wolfram言語101 115バイト

s=StringSplit;Length[Join@@(WordData[#,"Hyphenation"]&/@Join@@s/@
s[IntegerName@#,"-"])]+Boole[#>100&&#~Mod~100!=0]&

説明

(置き換えStringSplitのためs

Length[Join@@(WordData[#,"Hyphenation"]&/@Join@@
StringSplit/@ StringSplit[IntegerName@#,"-"])]+Boole[#>100&&#~Mod~100!=0]&

IntegerName数値をアメリカ英語で表示します(つまり、100より大きい数値に「and」を含めない)777-> "seven hundred seventy-seven

StringSplit[IntegerName@#,"-"] レンダリングのハイフンを削除します。

StringSplit/@ レンダリングを単語に分割します。

Join@@ 単語の単純なリストを残しますが、埋め込みリストはありません(ハイフンが出現した場合)。

WordData[#,"Hyphenation"] 単一の単語を音節に分割します。

Join@@ すべての単語の音節の単純なリストを残します。

Length 音節を数えます

+Boole[#>100&&#~Mod~100!=0]1100を超える整数の音節数に追加されます(イギリス英語のレンダリングで追加の「and」が使用されるため)。100の整数倍は除外されます。


6

ジャワ11、105の 102バイト

n->(""+"".repeat(8)).charAt(n%100)+(n+"").split("7",9).length-(n>99?2:6)

印刷できない文字がたくさん含まれています。

-3バイト、@OlivierGrégoireに感謝します。

オンラインでお試しください。

説明:


n->               // Method with integer as both parameter and return-type
  (""
                  //  Push string with ASCII-value digits 46666666666867777777
 +"".repeat(8))
                  //  Appended with 8 times a string with ASCII-value digits 7888888888
   .charAt(n%100) //  Take the (input modulo-100)'th character of this string (as integer)
  +(n+"").split("7",9).length
                  //  Count the amount of 7s in the input + 1
  -(n>99?         //  And if the input is larger than 99:
     2            //   Subtract 2 (-1 for the 7s+1 count; -5 to map the ASCII-digits to:
                  //               4 → -1; 6 → 1; 7 → 2; 8 → 3;
                  //               and +4 for the inputs above 99)
    :             //  Else:
     6)           //   Subtract 6 (-1 for the 7s+1 count and -5 to map the ASCII-digits to:
                  //               4 → -1; 6 → 1; 7 → 2; 8 → 3)

1
102バイト変更することにより.split("7",-1).split("7",9)、そして-6+(n>99?4:0)します-(n>99?2:6)
オリビエグレゴワール

1
@OlivierGrégoireありがとう。完全に見逃しましたが-(n>99?2:6)、あなたがそれを指摘したので、それはとても明白です。と-19起因する制限された私は考えていませんでし入力サイズ、とても感謝します!
ケビンクルーイッセン

5

05AB1E34 31 バイト

т%U7¢I€Ā`Iт@3*X_(X20@X12Q(X11QO

オンラインそれを試してみたり、すべての検証[1,999]テストケースを

説明:

上記のすべてのチェックで、真実の場合は1、偽の場合は0になります。

т%         # Take modulo-100 of the (implicit) input
           #  i.e. 710 → 10
  U        # Pop and store it in variable `X`
7¢         # Count the amount of 7s in the (implicit) input
           #  i.e. 710 → 1
I€Ā        # Trutify each digit in the input (0 if 0; 1 otherwise)
   `       # And push all of the mapped values to the stack
           #  i.e. 710 → [1,1,0]
Iт@        # Check if the input is larger than or equal to 100
           #  i.e. 710 → 1 (truthy)
   3*      # Multiply that result by 3 (for 'hund-red and')
           #  i.e. 1 → 3
X_         # Check if variable `X` is 0
           #  i.e. 10 → 0 (falsey)
  (        # And negate that (to remove 'and' when #00)
           #  i.e. 0 → 0
X20@       # Check if variable `X` is larger than or equal to 20 (for '-ty')
           #  i.e. 10 → 0 (falsey)
X12Q       # Check if variable `X` is exactly 12
           #  i.e. 10 → 0 (falsey)
    (      # And negate that (to remove 'teen')
           #  i.e. 0 → 0
X11Q       # Check if variable `X` is exactly 11 (for 'el-ev-en' minus 'one one')
           #  i.e. 10 → 0 (falsey)
O          # Sum everything on the stack (and output implicitly)
           #  i.e. [1,1,1,0,3,0,0,0,0] → 6

これは700テストケースに失敗します。「七百」は4つの音節、この戻り5有する
AJFaraday

@AJFaradayは今修正する必要があります。の+1が20より大きいかどうかを確認するときIに、X(input mod 100 )の代わりに(input)を誤って持っていましたty
ケビンクルーッセン

申し訳ありませんが、「100」に対して0を返します
AJFaraday

@AJFaraday Fixed .. >(入力が100より大きいかどうかを確認)が@(入力が100以上かどうかを確認)に置き換えられました。たぶん私は..投稿する前に自分より慎重に申し訳ありませんがそのことについて。..いくつかのより多くのテストケースをチェックしている必要があります
ケビンCruijssen

4
ちなみに、ルービックキューブのシルクハットを愛する!
AJFaraday

5

39 31バイト

I⁻⁺↨E謬Iι²№θ7I§⁺”)∨∧⌈a¡↶”×0⁸⁰N

オンラインでお試しください!リンクは、コードの詳細バージョンです。説明:

I⁻⁺

音節の数の調整を計算し、結果を文字列として出力します。

↨E謬Iι²

ゼロ以外の各桁を1に変更してから、基数2としてデコードします。これにより、ほとんどの入力に対して正しい答えが得られます。

№θ7

それぞれに1を追加します7

I§⁺”)∨∧⌈a¡↶”×0⁸⁰N

リテラル文字列10000000001021111111を取得し、80個のゼロを追加してから、入力によって周期的にインデックスを付け、その数字を減算します。


4

ゼリー28 25 23バイト

9ḊŻ;2+⁵Żċ%ȷ2$ạDṠḄƊ+Dċ7Ɗ

オンラインでお試しください!

使い方

9ḊŻ;2+⁵Żċ%ȷ2$ạDṠḄƊ+Dċ7Ɗ  Main link. Argument: n (integer in [1, ..., 999])

9                        Set the return value to 9.
 Ḋ                       Dequeue; yield [2, 3, 4, 5, 6, 7, 8, 9].
  Ż                      Zero; yield [0, 2, 3, 4, 5, 6, 7, 8, 9].
   ;2                    Concat 2, yield [0, 2, 3, 4, 5, 6, 7, 8, 9, 2].
     +⁵                  Add 10; yield [10, 12, 13, 14, 15, 16, 17, 18, 19, 12].
       Ż                 Zero; yield [0, 10, 12, 13, 14, 15, 16, 17, 18, 19, 12].
         %ȷ2$            Yield n % 1e2.
        ċ                Count the occurrences of the modulus in the array.
                 Ɗ       Combine the three links to the left into a monadic chain.
              D            Decimal; convert n to its array of digits in base 10.
               Ṡ             Take the sign of each decimal digit (0 or 1).
                Ḅ            Convert the array of signs from base 2 to integer.
             ạ           Compute the abs. difference of the results to both sides.
                      Ɗ  Combine the three links to the left into a monadic chain.
                   D       Decimal; convert n to its array of digits in base 10.
                    ċ7     Count the number of 7's.

3

PHP190の 158 145 141 137バイト

<?for($j=$p=0;$p<strlen($i=$argv[1]);)$j+=str_split($i)[$p++]>0;echo$j+substr_count($i,7)+3*($i>99)-!($i%=100)+($i>19)-($i==12)+($i==11);

オンラインでお試しください!

Kevin Cruijssenのソリューションの移植版(残念ながらPHPには同じ簡潔さはありません:))

- シャギーのおかげで32 45!

-3 Kevin Crujissenに感謝します!



1
145バイト。短いタグを使用してさらに数バイトを保存できますが、TIOでそれらを使用する方法を思い出せません。(注:私は自分の電話にいるので、すべての入力をテストしていません。)
シャギー

1
>99andの>19代わりに>=100and を使用すると、@ Shaggyはさらに2バイト変更できます>=20
ケビンクルーイッセン

1
@KevinCruijssenは実際には3バイトを節約します。100から99に
移行

また、エコーの開始位置に変数を配置することで、別のバイトを保存することができました。
NK1406

2

05AB1E、24バイト

デニスのゼリーの答え

8L>Ć¾šT+¾šsт%¢sSĀJCαs7¢+

オンラインでお試しください! またはテストスイートとして

説明

8L>                       # push range [2 ... 9]
   Ć                      # enclose, append head
    ¾š                    # prepend 0
      T+                  # add 10 to each
        ¾š                # prepend 0
          sт%¢            # count occurrences of input % 100 in this list
              sS          # push input split into a list of digits
                Ā         # truthify, check each if greater than 0
                 JC       # convert from base-2 to base-10
                   α      # absolute difference
                    s7¢+  # add the amount of 7's in the input

1

05AB1E、26 バイト

€ĀJCI7¢•Ž¢Γ}Þ±6u•¾80׫Iè(O

@Neilのチャコール答えは、だから、この答えのような場合にも、彼をupvoteすることを確認してください!

オンラインそれを試してみたり、すべてのテストケースを確認してください

圧縮整数•Ž¢Γ}Þ±6u•は、代わりに•8JA•b2TÌǝ、は同じバイトカウント用にます。

説明:

€Ā                   # Trutify every digit in the (implicit) input
                     # (0 remains 0; everything else becomes 1)
  J                  # Join it together to a single string
   C                 # Convert from binary to integer
I7¢                  # Count the amount of 7s in the input
•Ž¢Γ}Þ±6u           # Push compressed integer 10000000001021111111
          ¾80׫      # Append 80 "0"s
               Iè    # Index the integer (with automatic wraparound) into it
                 (   # Negate the result
O                    # Sum all values on the stack (and output implicitly)

理由を理解するに•Ž¢Γ}Þ±6u•、この05AB1Eの私の回答(大きな整数を圧縮する方法?参照してください10000000001021111111

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.