[
]
The first round checks if any number in the list is equal to [i] (12).
[
]
j equals i, therefore we skip.
[
]
Are the values at positions [j] and [i] equal?
[
]
No, so next.
[
]
No, so next.
[
]
Are the values at positions [j] and [i] equal?
[
]
No, so next.
[
]
No, so next.
[
]
Are the values at positions [j] and [i] equal?
[
]
No, so next.
[
]
No, so next.
[
]
Are the values at positions [j] and [i] equal?
[
]
No, so next, but the loop is ended.
[
]
The while loop for j is ended, so that i will be increased for the next i while loop
[
]
The while loop for j is ended, so that i will be increased for the next i while loop
[
]
And while loop j will be in a complete new loop
[
]
And while loop j will be in a complete new loop
[
]
New round will start to find the duplicated element for the [i] (15).
[
]
Are the values at positions [j] and [i] equal?
[
]
No, so next.
[
]
No, so next.
[
]
j equals i, therefore we skip.
[
]
j equals i, therefore we skip.
[
]
Are the values at positions [j] and [i] equal?
[
]
No, so next.
[
]
No, so next.
[
]
Are the values at positions [j] and [i] equal?
[
]
Yes, we found it!
[
]
Print the 15 value!
[
]
Break the j while loop
[
]
And break the i while loop
[
]
Program ended