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
56 while self._splits[i-1] >= self._splits[i] or self._splits[i-1] not in self._len_cntr:
57 self._splits[i-1] -= 1
1.When self._splits[i-1]=14 and self._splits[i]=5(That is possible because now self._splits[i] was obtained in the last loop。 ),line 57 is executed 。Then when self._splits[i-1]=4 and 4 is not in self._len_cntr , 57 is also executed so that self._splits[i-1] is decreasing on.There is no end.
2.What function it has。
The text was updated successfully, but these errors were encountered:
56 while self._splits[i-1] >= self._splits[i] or self._splits[i-1] not in self._len_cntr:
57 self._splits[i-1] -= 1
1.When self._splits[i-1]=14 and self._splits[i]=5(That is possible because now self._splits[i] was obtained in the last loop。 ),line 57 is executed 。Then when self._splits[i-1]=4 and 4 is not in self._len_cntr , 57 is also executed so that self._splits[i-1] is decreasing on.There is no end.
2.What function it has。
The text was updated successfully, but these errors were encountered: