I have to start looping a vector from its end to zero. When I meet the value 0 I need to replace it with the sum of the three previews values. The exception will be for the first zero met, I need just to sum the previous two values.
e.g.
v = [0, 5, 5, 0, 6, 6, 0, 7, 7 ]
Expected result:
v = [36, 5, 5, 26, 6, 6, 14, 7, 7 ]
Code
for i in range(len(v), 0):
if v == 0 :
v[i] = v[i+1] + v[i+2] + v[i+3]
The code is not working. Where am I wrong?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…