You are viewing a single comment's thread. Return to all comments →
vector<int> rotLeft(vector<int> a, int d) { vector<int> b(a.size()); for (int i = 0; i < a.size(); i++) { int newIndex = (i-d+a.size())%a.size(); b[newIndex] = a[i]; } return b; }
Seems like cookies are disabled on this browser, please enable them to open this website
Arrays: Left Rotation
You are viewing a single comment's thread. Return to all comments →