How do I solve the following recurrence relation?
$$ T(n) = 1 + \sum_{j=0}^{n-1} T(j). $$
I thought of solving it by generating its recursion tree. I found that the height of the tree would be equal to n$n$ but wasn't able to find the cost of each level.
Anyone please help :)