You are viewing a single comment's thread. Return to all comments →
My solution
def _rotate(a, k): return a[-k:]+a[0:k] def circularArrayRotation(a, k, queries): # Write your code here res=_rotate(a, k) return [res[i] for i in queries]
def _rotate(a, k): return a[-k:]+a[0:k]
def circularArrayRotation(a, k, queries): # Write your code here res=_rotate(a, k) return [res[i] for i in queries]
Seems like cookies are disabled on this browser, please enable them to open this website
Circular Array Rotation
You are viewing a single comment's thread. Return to all comments →
My solution