[Nested Loops] #java #forloop
for (int i = 0; i < nums.length; i++) { for (int j = i+1; j < nums.length ;j++) { } }