Let 'a' be an array containing n integers in increasing order. The following algorithm determines whether there are two distinct numbers in the array whose difference is a specified number S > 0
i = 0; j = 1;
while (j < n)
{
if (E)
j++;
else if (a[j] — a[i] = = S)
break;
else
i++;
}
if (j < n)
printf("yes");
else
printf ("no");
Choose the correct expression for E.
x | y |