You are viewing a single comment's thread. Return to all comments →
C++ solution
vector<int> rotLeft(vector<int> a, int d) { while(d) { int temp = a[0]; a.push_back(temp); a.erase(a.begin()); d--; } return a; }
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 →
C++ solution