Ad
  • Custom User Avatar

    Hey Mohamed,

    From what I could see, your first for loop doesn't cover the entire length of numbers. That is, all elements in numbers are added into list except numbers[0] because your condition (i > 0), you should instead make it (i > -1). Try it if the extra coverage helps with the random test case.