Tagged Questions
29
votes
12answers
15k views
Breaking out of a nested loop
If I have a for loop which is nested within another, how can I efficiently come out of both loops (inner and outer) in the quickest possible way?
I don't want to have to use a boolean and then have ...
2
votes
5answers
633 views
Turning a recursive function into a for loop?
Does every recursive function have an equivalent for loop? (Both achieve the same result).
I have this recursive function:
private static boolean recur(String word, int length) {
if(length == 1 ...
17
votes
11answers
7k views
In python is there an easier way to write 6 nested for loops?
This problem has been getting at me for a while now. Is there an easier way to write nested for loops in python? For example if my code went something like this:
for y in range(3):
for x in ...
3
votes
4answers
4k views
breaking/exit nested for in vb.net
how do i get out of nested for or loop in vb.net?
I tried using exit for but it jumped or breaked only one for loop only.
how can i make it for the following:
for each item in itemList
for ...
2
votes
1answer
857 views
Nested WHILE loops in Python
I am a beginner with Python and trying few programs. I have something like the following WHILE loop construct in Python (not exact).
IDLE 2.6.4
>>> a=0
>>> b=0
>>> ...