a quizz | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

a quizz

return the sum of the numbers in the array, except ignore sections of numbers starting with a 6 and extending to the next 7(every 6will be followed by at least one 7). Return 0 for no numbers.

27th Aug 2018, 2:27 AM
Liu zirui
Liu zirui - avatar
1 Answer
+ 1
I think it could be something like this (in python): a = [1, 4, 6, 8, 7, 4, 5, 6, 8, 9, 7] z = 0 res = 0 for i in a: if i == 6: z = 1 if z == 0: res += i if i == 7: z = 0 print ("The result =", res)
27th Aug 2018, 6:51 AM
Paul
Paul - avatar