48. 旋转图像 - 力扣(Leetcode)
2024-1-22
| 2024-1-22
0  |  阅读时长 0 分钟
type
status
date
slug
summary
tags
category
password
URL
PublishDate
icon
给定一个 n × n 的二维矩阵 matrix 表示一个图像。请你将图像顺时针旋转 90 度。
你必须在 原地 旋转图像,这意味着你需要直接修改输入的二维矩阵。请不要 使用另一个矩阵来旋转图像。
示例 1:
notion image
示例 2:
notion image
提示:
  • n == matrix.length == matrix[i].length
  • 1 <= n <= 20
  • 1000 <= matrix[i][j] <= 1000
  • leetcode
  • 59. 螺旋矩阵 II - 力扣(Leetcode)119. 杨辉三角 II - 力扣(Leetcode)
    Loading...
    目录