Assume i have the following code, there are three for loop to do something. Would it run fast if i change the most outer for loop to while loop? thanks~~
<
No, you're still looping the exact same number of times. Wouldn't matter at all.