You are viewing a single comment's thread. Return to all comments →
python solution. from collections import deque def circularArrayRotation(a, k, queries): b=deque(a) b.rotate(k) for i in queries: print(b[i])
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 →