How do I determine the running time (in terms of Big-Theta) for the algorithm of input size n
that satisfies recurrence relation T(n) = T(n-1)+n
where n >= 1
and with initial condition T(1) = 1
?
Edit: I was practicing a past exam paper. Got stuck on this question. Need guidance