You are viewing a single comment's thread. Return to all comments →
C#
int item = 0; for (int i = 0; i < d; i++) { item = a[0]; a.RemoveAt(0); a.Add(item); } return a;
Arrays: Left Rotation
You are viewing a single comment's thread. Return to all comments →
C#