이야기
9gag 에서이 게시물을 보셨습니까 ? 어쩌면 당신은 자신의 문장을 만드는 느낌이 들었습니다. 그러나 당신은 30 분 안에 스크립트를 골프로 칠 수 있다는 것을 알고 있습니다.
제출
프로그램은 입력 문자열을 얻습니다. 입력 문자열은 아래 설명과 같이 따옴표가 추가되어 반환됩니다. 표준 허점은 금지되어 있습니다. 라인리스트로 출력이 허용됩니다. 출력을 중단하지 않는 후행 공백과 빈 줄이 허용됩니다.
입력 규칙
- 입력은 인쇄 가능한 ASCII 문자 만 포함합니다.
- 입력에 공백이 포함될 수 있습니다. 단어는 그들과 함께 결정됩니다.
- 공백 뒤에는 다른 공백이 절대로 오지 않습니다.
- 입력이 없거나 빈 문자열의 경우는 중요하지 않습니다.
출력 규칙
한 단어가 제공되면 프로그램은 따옴표 사이에 문자열을 반환해야합니다.
입력 문자열에 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 이므로 최소 바이트 응답이 이깁니다!
"
문자 가 포함되지 않는다고 가정 할 수 있습니까 ?
''
, ‘’
또는 “”
, 대신를 ""
?