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!

link|improve this question

First of all, the code is not properly indented, please fix it (I do not have edit privileges ;) ). – hochl Dec 5 '11 at 12:15
Are you aware of the bool type? – Chris Morgan Dec 5 '11 at 12:23
for i in range(len(nums))? Eek! – Chris Morgan Dec 5 '11 at 12:26
Hey he just started programming ... :( – hochl Dec 5 '11 at 12:29
@hochl: at first I was going to explain about Python iteration, then I saw that he was using [i-1] and decided that he was probably doing it on purpose. If not, @Jeezus, in Python you don't use for i in range(len(seq)): seq[i] in general, you use for i in seq: i. – Chris Morgan Dec 5 '11 at 12:35
show 3 more comments
feedback

1 Answer

up vote 4 down vote accepted

Well, your program has a bug. Check the results of the following:

print sum67([1,2,5])
print sum67([1,2,6,5,7])
print sum67([1,2,6,5,7,6,7])

This will print:

8
3
16 <-- wrong

If a 7 is followed by a 6 immediately, you will add the 6 and all following numbers. I'm not sure if more than one range of 6 ... 7 is allowed in the input, but if it is, you have to fix your algorithm.

This simple implementation does return correct numbers:

def sum67(nums):
        state=0
        s=0
        for n in nums:
                if state == 0:
                        if n == 6:
                                state=1
                        else:
                                s+=n
                else:
                        if n == 7:
                                state=0
        return s

Besides, if you don't need to use an index for some obscure reasons, you can directly iterate over the elements of a list ( for element in list: ... ).

link|improve this answer
+1: Multiple 6-7 ranges are allowed (there are tests for that); the simplest test case that fails for the OP's solution would be sum67([6,7,6,7]) -> 0 – Ferdinand Beyer Dec 5 '11 at 12:37
Thanks man, I overcomplicated it without any reason: my solution would work if I added " and nums[i]!=6 at line 8, but obviously yours is much better. Yes, I used an index because I wanted to access the previous element of the list, but as you show this is not necessary. – Jeezus Krist Dec 5 '11 at 12:56
Actually you could make the state variable in my solution a bool (True or False), but the integer solution has the advantage that you can have more than two states and is, in my opinion, more educational. Glad I could help! – hochl Dec 5 '11 at 12:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.