You are viewing a single comment's thread. Return to all comments →
def rotLeft(a, d): # Write your code here for i in range(d): temp = a[0] del a[0] a.append(temp) return a
Arrays: Left Rotation
You are viewing a single comment's thread. Return to all comments →