I tried to unwinding the recursive function, but I got a
$T(n) = 1 + (\log(1))^2 + (\log(2))^2 + ... + (\log(n-1))^2 + (\log(n))^2$
How can I simplify it, or can I get time complexity from other way?
I tried to unwinding the recursive function, but I got a
$T(n) = 1 + (\log(1))^2 + (\log(2))^2 + ... + (\log(n-1))^2 + (\log(n))^2$
How can I simplify it, or can I get time complexity from other way?