Input: arr[][] = {
{3, 4, 1, 8},
{11, 23, 43, 21},
{12, 17, 65, 91},
{71, 56, 34, 24}
}
Output: {
{8, 56, 4, 24},
{11, 17, 43, 12},
{91, 65, 23, 21},
{71, 1, 34, 3}
}
Explanation: Operations to be followed:
- Reverse the first row
- Reverse the second column
- Reverse the third row
- Reverse the fourth row
Input: { {11, 23, 43, 21}, {12, 17, 65, 91}, {71, 56, 34, 24} }
Output: { {21, 56, 23, 71}, {12, 17, 65, 91}, {24, 34, 43, 11} }