We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
int n = arr.size();
List<Integer> rotated = new ArrayList<>();
for (int i = 0; i < n; i++) {
int index = (i + d) % n;
rotated.add(arr.get(index));
}
return rotated;
}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Left Rotation
You are viewing a single comment's thread. Return to all comments →
Java Solution