I would like to know what is the time complexity of this function. I think it is O(n^2), but I am unsure.
def func(n): for i in func(n-1): # Do something