Return a new list that rotates the input integers to the right by the requested number of steps. Do not modify the original list. Treat the step count as non-negative and normalize values larger than the list size. Return null when the input list is null.
Examples:
List<Integer> values = new List<Integer>{ 1, 2, 3, 4, 5 };
List<Integer> rotated = rotateRight(values, 2);
// Results: [4, 5, 1, 2, 3]
List<Integer> same = rotateRight(values, 5);
// Results: [1, 2, 3, 4, 5]
Apex Code Editor
Welcome to Lightning Challenge!
Create an Account
Sign up to track your progress, earn points, and compete with others. Your solutions will be saved automatically.
Create accountHow It Works
- • Write your solution in the code editor
- • Connect your Salesforce org to test
- • Submit to check if your solution passes
- • Use hints if you get stuck
Contest Alert
🏆 #CodeEveryDay Feb 2026
Contest runs February 1 - 28. Complete challenges to climb the leaderboard!
Points are calculated for challenges completed during the contest period.