Đưa ra một chuỗi, tìm từ đầu tiên bắt đầu bằng mỗi chữ cái (không phân biệt chữ hoa chữ thường).
Mẫu vật
Sử dụng Ferulas flourish in gorgeous gardens.
làm đầu vào:
"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`
Sau đó, đầu ra cho mẫu này phải là các từ phù hợp được nối bởi một khoảng trắng:
"Ferulas in gorgeous"
Thử thách
Cả đầu vào và đầu ra phải là một đại diện chuỗi hoặc thay thế gần nhất trong ngôn ngữ của bạn.
Chương trình hoặc chức năng được phép.
Bạn có thể xem xét một từ ít nhất là một trong số : lowercase or uppercase letters, digits, underscore
.
Đây là mã golf , câu trả lời ngắn nhất trong byte thắng.
Một mẫu khác:
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"