You are viewing a single comment's thread. Return to all comments →
List res=new ArrayList<>(); int n=a.size(); k=k%n; for(int q:queries){ int newIndex=(q-k+n)%n; res.add(a.get(newIndex)); } return res;
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 →
List res=new ArrayList<>(); int n=a.size(); k=k%n; for(int q:queries){ int newIndex=(q-k+n)%n; res.add(a.get(newIndex)); } return res;