목록 또는 구분 된 문자열이 제공되면 한 단어 후에 각 단어의 첫 문자가 포함 된 목록 또는 구분 된 문자열을 출력하십시오.
이 문제를 해결하기 위해 "단어"는 공백, 줄 바꿈 및 탭 문자를 제외한 인쇄 가능한 모든 ASCII 문자로만 구성됩니다.
예를 들어, "좋은 오후, 세계!"라는 문자열을 사용하십시오. (공백으로 구분) :
1. String
"Good afternoon, World!"
2. Get the first characters:
"[G]ood [a]fternoon, [W]orld!"
3. Move the characters over. The character at the end gets moved to the beginning.
"[W]ood [G]fternoon, [a]orld!"
4. Final string
"Wood Gfternoon, aorld!"
이것은 code-golf 이므로 가장 짧은 코드가 승리합니다!
테스트 사례 :
Input -> output (space-delimited)
"Good afternoon, World!" -> "Wood Gfternoon, aorld!"
"This is a long sentence." -> "shis Ts i aong lentence."
"Programming Puzzles and Code Golf" -> Grogramming Puzzles Pnd aode Colf"
"Input -> output" -> "onput I> -utput"
"The quick brown fox jumped over the lazy dog." -> "dhe Tuick qrown box fumped jver ohe tazy log."
"good green grass grows." -> "good green grass grows."