How much time does the following algorithm require as a function of n?
Express your answer in "theta notation" in the simplest possible form.
Show all work!
l = 0
for i = 1 to n
for j = 1 to i
for k = j to n
l = l +1
This shows how to determine how much time a given algorithm requires.