Very easy question, but I'm kind of unsure, just got into Big O. If that would be just 3 loops, it just would be N^3, but there are constant loops and also a loops to n-1, which confuses a bit. How does complexity change in that case?
Algorithm:
for i=1 to 10
do for j=1 to n-1
do for k=1 to 8