Rotate Image
Medium
Arrays
Matrix
Solve the Rotate Image problem.
Input and output as shown in examples.
Constraints
See problem-specific constraints.
Examples
Example 1:
Input: 1 2 3
4 5 6
7 8 9
Output:
Example 2:
Input: 1 2 3
4 5 6
7 8 9
Output:
Hints
Think about the approach carefully.
Consider edge cases.
Tests:
Runtime:
Memory:
Test
Input:
Expected:
Got:
Click Run Code to test against sample cases, or Submit to test against all cases.
▲ Console