I have two iterables a,b
whose sizes are changed during the while loop (via resetting it to another new created iterable that is longer / shorter).
And I need to run a while loop like this.
while len(a) < b_length:
... # here a & b are modified ( & probably get longer & shorter) via randomized functions
can I speed this up via numba?