You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The positives test in 02-lists.md self.assertEqual(lst.positives(0, -5,-1,4), [0,4])
should be self.assertEqual(lst.positives(0, -5,-1,4), [4])
instead as the zero is neither positive nor negative :)
The text was updated successfully, but these errors were encountered:
The positives test in 02-lists.md
self.assertEqual(lst.positives(0, -5,-1,4), [0,4])
should be
self.assertEqual(lst.positives(0, -5,-1,4), [4])
instead as the zero is neither positive nor negative :)
The text was updated successfully, but these errors were encountered: