pablojadz
Results
1
comments of
pablojadz
This is another false possitive ``` results = [] next_ = 0 for i in range(10): if i % 2 == 0: continue results[next_] = i next_ += 1 ```