Skip to content

Conversation

@shad03152015
Copy link

Critical bug: Should be range(n) to process all n days.

range(1, n-1): For n=5, runs i=1,2,3 (3 iterations, skips days 1+5)

Correct: range(n) runs i=0,1,2,3,4 (5 iterations)

Critical bug: Should be range(n) to process all n days.

range(1, n-1): For n=5, runs i=1,2,3 (3 iterations, skips days 1+5)

Correct: range(n) runs i=0,1,2,3,4 (5 iterations)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant