Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The return value must be 0 or positive representing the length of the sequence. Let's call the function longestSequencePos(), with one argument (nums).

And if you would comment out each section so I can understand it.

share|improve this question
5  
And let's call this question homework. – Ignacio Vazquez-Abrams Oct 31 '11 at 2:18
Have you tried this problem at all? – Blender Oct 31 '11 at 2:21
Actually, it's practice work, not homework. I just want to understand it. – brownieface Oct 31 '11 at 2:21
4  
If you want to understand it then try solving it. – Bill the Lizard Oct 31 '11 at 2:23

closed as too localized by Bill the Lizard Oct 31 '11 at 2:23

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

up vote 1 down vote accepted
def countLongestSequence(nums):
        countMax=0
        count=0
        for i in range(0, len(nums)+1):
                if i == len(nums) or nums[i] <= 0:
                        if count > countMax:
                                countMax=count
                        count=0
                else:           
                        count+=1
        return countMax 
share|improve this answer
Oops. One line is misindented. – Ignacio Vazquez-Abrams Oct 31 '11 at 2:30
right you are -- fixed. – hochl Oct 31 '11 at 2:33
This could be done with groupby in a single line... – JBernardo Oct 31 '11 at 2:44
@JBernardo: Absolutely. return max(itertools.chain([0], (len(list(x[1])) for x in itertools.groupby(nums, key=lambda x: x >= 0) if x[0]))) – Ignacio Vazquez-Abrams Oct 31 '11 at 2:46
Yeah, and a big comment what the code is doing :) – hochl Oct 31 '11 at 14:10

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