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 (1.9k points)

1 Answer

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