Logo

Programming-Idioms

History of Idiom 42 > diff from v26 to v27

Edit summary for version 27 by programming-idioms.org:
Updated picture URL by user [programming-idioms.org]

Version 26

2016-04-06, 19:30:20

Version 27

2016-09-23, 13:28:11

Idiom #42 Continue outer loop

Print each item v of list a which in not contained in list b.
For this, write an outer loop to iterate on a and an inner loop to iterate on b.

Idiom #42 Continue outer loop

Print each item v of list a which in not contained in list b.
For this, write an outer loop to iterate on a and an inner loop to iterate on b.

Illustration