Are statements below true or false?
$(1+1/n)^n = \Theta(\log n)$
$\log \log n = o(\log n)$ Note that it is little-o, not big-O
For first statement, I thought it would have $\Theta(n^2)$ complexity so it is false, while the second statement is true. Is my assumption correct?