I have an array A of length N.
def f(A): for u, v in zip(A,A[1:]): print(u,v)
What is the time complexity of fun