Added nested loop example and some more comment in other examples.
This commit is contained in:
parent
0b48aa3e0c
commit
d67c541824
5 changed files with 137 additions and 0 deletions
|
|
@ -29,3 +29,19 @@ for x in arr
|
|||
print(x) // -> 1, 2, 4
|
||||
if x == 4
|
||||
break
|
||||
|
||||
/* Expected output:
|
||||
1
|
||||
3
|
||||
5
|
||||
7
|
||||
0
|
||||
1
|
||||
2
|
||||
4
|
||||
5
|
||||
6
|
||||
1
|
||||
2
|
||||
4
|
||||
*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue