I just started learning Python and I can't understand why this solution to the problem "sum67" at the CodingBat site (http://codingbat.com/prob/p108886) passes all normal tests but not the "other tests" in the last line, which are not described.
Now, the problem is:
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 6 will be followed by at least one 7). Return 0 for no numbers.
sum67([1, 2, 2]) → 5
sum67([1, 2, 2, 6, 99, 99, 7]) → 5
sum67([1, 1, 6, 7, 2]) → 4
and my solution is:
def sum67(nums):
sum = 0
throwaway = 0
for i in range(len(nums)):
if throwaway == 0:
if nums[i] == 6:
throwaway = 1
elif throwaway == 1 and i > 0 and nums[i-1] == 7:
throwaway = 0
if throwaway == 0:
sum += nums[i]
return sum
I totally know this is not the best solution, but I'm just curious to know why this is wrong. Could you please explain me why this is wrong and in which particular case it gives a wrong result?
Thanks a lot!
booltype? – Chris Morgan Dec 5 '11 at 12:23for i in range(len(nums))? Eek! – Chris Morgan Dec 5 '11 at 12:26[i-1]and decided that he was probably doing it on purpose. If not, @Jeezus, in Python you don't usefor i in range(len(seq)): seq[i]in general, you usefor i in seq: i. – Chris Morgan Dec 5 '11 at 12:35