文字列が与えられたら、各文字で始まる最初の単語を検索します(大文字と小文字は区別されません)。
サンプル
Ferulas flourish in gorgeous gardens.
入力として使用:
"Ferulas flourish in gorgeous gardens."
^^^^^^^ ^^ ^^^^^^^^
| | |
| | --> is the first word starting with `g`
| --> is the first word starting with `i`
--> is the first word starting with `f`
次に、このサンプルの出力は、単一のスペースで結合された一致した単語になります。
"Ferulas in gorgeous"
チャレンジ
入力と出力の両方が文字列表現であるか、言語で最も近い代替である必要があります。
許可されたプログラムまたは機能。
単語は次の少なくとも1つであると考えることができますlowercase or uppercase letters, digits, underscore
。
これはcode-golfで、バイト単位の最短回答が勝ちです。
別のサンプル:
input: "Take all first words for each letter... this is a test"
output: "Take all first words each letter is"
input: "Look ^_^ .... There are 3 little dogs :)"
output: "Look _ There are 3 dogs"
input: "...maybe some day 1 plus 2 plus 20 could result in 3"
output: "maybe some day 1 plus 2 could result in 3"