एक स्ट्रिंग को देखते हुए, प्रत्येक अक्षर (केस असंवेदनशील) से शुरू होने वाले पहले शब्द को खोजें।
नमूना
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
।
यह कोड-गोल्फ है , बाइट्स जीत में सबसे छोटा जवाब।
एक अन्य नमूने:
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"