1914. Cyclically Rotating a Grid
https://leetcode.com/problems/cyclically-rotating-a-grid
Description
You are given an m x n integer matrix grid, where m and n are both even integers, and an integer k.
The matrix is composed of several layers, which is shown in the below image, where each color is its own layer:

A cyclic rotation of the matrix is done by cyclically rotating each layer in the matrix. To cyclically rotate a layer once, each element in the layer will take the place of the adjacent element in the counter-clockwise direction. An example rotation is shown below:
Return the matrix after applying k cyclic rotations to it.
Example 1:

Example 2:

Constraints:
m == grid.lengthn == grid[i].length2 <= m, n <= 50Both
mandnare even integers.1 <= grid[i][j] <=50001 <= k <= 109
ac
Last updated
Was this helpful?