我试图在不使用 Python 中的预定义列表函数(例如枚举、zip、索引等)的情况下在列表中找到一个运行。
通过运行,我的意思是给定一个列表 [1,2,3,6,4],我想返回一个新列表 [1,2,3] 以及返回运行开始和结束的位置,以及运行。
下面是我对此的尝试,但我似乎无法理解,我似乎总是遇到索引超出范围错误的问题。
def run_cards (hand_shuffle, hand_sample):
true_length = len(hand_shuffle) - 1
y = 0
r = []
for x in range(len(hand_shuffle)):
y = x + 1
if y <= true_length: #Checks if y is in range with x
t = hand_shuffle[y] - hand_shuffle[x] #Subtracts the two numbers to see if they run
r.append(t)
lent = len(hand_shuffle)
if hand_shuffle[lent-1] - hand_shuffle[lent-2] == 1:
r.append(1)
h = []
for i in range(len(r)):
if r[i] == 1: #If t from above for loop is equal to 1 append it to the new list
h.append(i)
h.append(i+1)
p = []
for j in h:
p.append(hand_shuffle[j])
print (p)
return hand_shuffle, hand_sample
现在,我的代码运行,但没有给我我正在寻找的东西。