I am working on some homework so I cannot post any code. I am working on some code and at this point I have something like this (instead of functions I wrote time complexity):
while(O(n^2)) {
O(n^4);
O(n^2);
}
I estimated O's according to nested for-loops I have in functions. My question is what is actually time complexity of this whole thing? I wouldn't mind short explaination either. Thank you!