作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
<分区>
Possible Duplicate:
How to find positions of the list maximum?
一道作业题:定义一个接受单词列表的函数censor(words,nasty)
,并且用单词 CENSORED 替换出现在 nasty 中的所有单词,并且返回经过审查的单词列表。
>>> censor([’it’,’is’,’raining’], [’raining’])
[’it’,’is’,’CENSORED’]
我看到这样的解决方案:
nasty
的索引“CENSORED”
但我在寻找索引时遇到了困难..
我是一名优秀的程序员,十分优秀!