これはかなり簡単な挑戦です。
チャレンジ
入力には、null
最大長100の文字列(not またはempty)が含まれます。文字列の各単語の母音の数をスペースで区切って出力します。
ルール
- 文字列の長さは100文字を超えません。
- 文字列にはアルファベットのみが含まれ
A-Z
、a-z
スペースを含めることもできます。 - 入力は、
stdin
またはコマンドライン引数から使用する必要があります。 - 出力はで出力する必要があります
stdout
。 - 完全なプログラム、またはから入力
stdin
を取得して結果を出力する関数を作成できます。 - あなたのプログラム/機能のニーズがカウントすること母音がある
aeiou
とAEIOU
。
テストケース
This is the first test case --> 1 1 1 1 1 2
one plus two equals three --> 2 1 1 3 2
aeiou AEIOU --> 5 5
psst --> 0
the quick brown fox jumped over the lazy dog --> 1 2 1 1 2 2 1 1 1
得点
これはcode-golfであるため、最短の送信(バイト単位)が優先されます。
stdin
でstdout
。関数の引数を介して「入力を取得」するのは好きではありません。コマンドライン引数は問題ないようです。投稿に追加しました。
The name "vowel" is often used for the symbols that represent vowel sounds in a language's writing system, particularly if the language uses an alphabet. In writing systems based on the Latin alphabet, the letters A, E, I, O, U, and sometimes Y are all used to represent vowels. However, not all of these letters represent vowels in all languages.
母音とはどういう意味ですか?