Untitled
Anonymous
plain_text
01/16/2025 3:38 PM
356 B
13
Indexable
fn(arr[],left,right)
{
i = 0;
j = 0;
int cnt = 0;
while(j<n)
{
if(arr[j]<left)
j++;
continue;
else if(arr[j]>right)
{
i = j + 1;
j++;
continue;
}
cnt += j - i + 1;
j++;
}
return cnt;
}Editor is loading...
Leave a Comment