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!

How 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 July 2026

Contest runs July 1 - 31. Complete challenges to climb the leaderboard!

Only the 31 daily challenges shown during this contest count toward points. Earlier dailies don't carry over.

Wally can't hear you

Please sign in to access the AI Assistant

Sign In