Analyze the running time of the following recursive procedure as a function of
function mystery(n) {
if(n <= 1)
return;
else {
mystery(n / 3);
var count = 0;
mystery(n / 3);
for(var i = 0; i < n*n; i++) {
for(var j = 0; j < n; j++) {
for(var k = 0; k < n*n; k++) {
count = count + 1;
}
}
}
mystery(n / 3);
}
}
Add your answer to this markdown file. This page might help with the notation for mathematical expressions.