0 votes

for (int i = 1 to n) {
  for (int j = i*i to n) {
    sum += a[i]*b[j]
  }
}

in Asymptotic Analysis by AlgoMeister (2.1k points)

1 Answer

0 votes
by AlgoMeister (2.1k points)
...