ストーリー
9gagからこの投稿を見ましたか?たぶん、あなたはあなた自身の文章を作る感覚を得た。しかし、その後、30分で脚本をゴルフするだけでよいことに気づき、それに時間をかける必要はありません。
提出
以下に説明するように、プログラムは入力文字列を取得し、引用符を追加して返します。標準的な抜け穴は禁止されています。行のリストとしての出力が許可されます。出力を中断しない末尾のスペースと空の行は許可されます。
入力の規則
- 入力には、印刷可能なASCII文字のみが含まれます。
- 入力にはスペースを含めることができます。言葉は彼らによって決定されます。
- スペースの後に別のスペースが続かないことが保証されています。
- 入力がない場合や空の文字列の場合は関係ありません。
出力のルール
1つの単語が指定されている場合、プログラムは引用符で囲まれた文字列を返す必要があります。
入力文字列に2つ以上の単語がある場合、最初の入力が最初に返されますが、最初の単語は引用符で囲まれています。次に、次の行で、最初の入力を返しますが、2番目の単語を引用符で囲みます。残りの単語についても同様です。
一般に、プログラムは入力に含まれる単語と同じ数の行を返さなければなりません。
例:
test -> "test"
This is codegolf -> "This" is codegolf
This "is" codegolf
This is "codegolf"
This is a significantly longer, but not the longest testcase -> "This" is a significantly longer, but not the longest testcase
This "is" a significantly longer, but not the longest testcase
This is "a" significantly longer, but not the longest testcase
This is a "significantly" longer, but not the longest testcase
This is a significantly "longer," but not the longest testcase
This is a significantly longer, "but" not the longest testcase
This is a significantly longer, but "not" the longest testcase
This is a significantly longer, but not "the" longest testcase
This is a significantly longer, but not the "longest" testcase
This is a significantly longer, but not the longest "testcase"
Here is an another one -> "Here" is an another one
Here "is" an another one
Here is "an" another one
Here is an "another" one
Here is an another "one"
これはcode-golfなので、最小バイトの答えが勝ちです!
"
か?
''
、‘’
または“”
、ではなく""
?