每周挑战赛由 mohammad s. anwar 组织,是一场友好的竞赛,开发者通过解决两个任务进行竞争。它鼓励所有语言和级别的开发者通过学习、分享和娱乐来参与。
上周我参加了每周挑战 299,解决了任务 1:替换单词。该任务要求开发人员编写一个脚本,当给定一个数组和一个句子时,该脚本会替换句子中以数组中的任何单词开头的所有单词。
在这篇文章中,我将概述任务 1:替换每周挑战 299 中的单词,并给出一个简短的结论。
2. 任务 1:替换单词给你一组单词和一个句子。 编写一个脚本来替换给定句子中以给定数组中的任何单词开头的所有单词。 每周挑战 299,任务 1:替换单词
示例 1 - 3 说明了给定输入的预期输出。
实施例1input: @words = ("cat", "bat", "rat") $sentence = "the cattle was rattle by the battery" output: "the cat was rat by the bat"
如果 $sentence 中以 $word 开头的任意单词替换为 @words 中的 $word 即可获得输出,例如:
- “cattle”一词以“cat”一词开头,因此将“cattle”替换为“cat”会将句子转换为“the cat was raid by the battery”。
- 电池这个词以 the bat 开头,因此用 bat 替换 battery 会将句子转换为 the cat wasoracle by the bat。
- rattle 这个词以rat 这个词开头,因此将rattle 替换为rat,将句子转换为cat was raid by the bat。
input: @words = ("a", "b", "c") $sentence = "aab aac and cac bab" output: "a a a c b"实施例3
input: @words = ("man", "bike") $sentence = "the manager was hit by a biker" output: "the man was hit by a bike"3.我的解决方案
def replace_word(sentence, this_word): return ' '.join([this_word if word.startswith(this_word) else word for word in sentence.split(' ')]) def replace_words(words, sentence): for word in words: sentence = replace_word(sentence, word) return sentence
我的解决方案使用两个函数:replace_word 和 replace_words。
replace_word 函数使用内置字符串方法 split、startswith 和 join 以及列表理解,将字符串句子中以 this_word 开头的任何单词替换为 this_word。
- sentence.split(' ') 使用 (' ') 作为分隔符将句子拆分为单词列表。
- 列表理解 [this_word if word.startswith(this_word) else word for word in...] 从分割句子列表中构建另一个单词列表,当单词以 this_word 开头时用 this_word 替换它。
- ' '.join(...) 使用 (' ') 将第二个列表连接成字符串
- return 返回字符串
replace_words 函数连续将replace_word 应用于数组words 中每个单词的句子。然后它返回转换后的句子。
4. 结论在这篇文章中,我概述了任务 1:替换《每周挑战 299》中的单词,并给出了我的解决方案。
由于我在解决方案中使用了 split、join 和startswith 等内置方法,因此它很简单、冗长,而且可能很容易理解。如果您是 python 新手、编程新手或不熟悉正则表达式,这种方法可能会对您有所帮助。
以上就是我的 Python 语言任务解决方案 ROM 每周挑战的详细内容,更多请关注知识资源分享宝库其它相关文章!
版权声明
本站内容来源于互联网搬运,
仅限用于小范围内传播学习,请在下载后24小时内删除,
如果有侵权内容、不妥之处,请第一时间联系我们删除。敬请谅解!
E-mail:dpw1001@163.com
发表评论