Test = "godding"
target = "d"
i = 0
left = i
lc = 0
right = i
rc = 0
while Test[left] != target:
left -= 1
lc += 1
if left == -1:
left = len(Test) - 1
while Test[right] != target:
right += 1
rc += 1
if right == len(Test):
right = 0
print(left, lc)
print(right, rc)
相关文章
- 10-28为什么要生成python项目需要的最小requirements.txt文件?
- 10-28LeetCode.冗余连接(并查集以及广度优先搜索)- 685.冗余连接||
- 10-28Python | Leetcode Python题解之第514题*之路-题解:
- 10-28python 实现一个简单的浏览器引擎
- 10-28网络原理之 UDP-UDP 报文的格式
- 10-28从头学PHP之数组输出&基本函数
- 10-28Python 函数的传入参数-练习:
- 10-28python实战项目47:Selenium采集百度股市通数据-一、思路分析
- 10-28Python小游戏14——雷霆战机
- 10-28鹏哥C语言95---第17次作业:指针初阶+结构体