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.6k points)

1 Answer

0 votes
by AlgoMeister (1.6k points)
The Book: Analysis and Design of Algorithms | Presentations on Slideshare | Lecture Notes, etc
...