문자열이 주어지면 각 문자로 시작하는 첫 번째 단어를 찾으십시오 (대소 문자 구분).
견본
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"
도전
입력과 출력 모두 문자열 표현이거나 언어에서 가장 가까운 대안이어야합니다.
프로그램 또는 기능이 허용됩니다.
단어 중 하나 이상을 고려할 수 있습니다 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"