2 Star 1 Fork 0

royce li/Leetcode_royce

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
rotate.py 965 Bytes
一键复制 编辑 原始数据 按行查看 历史
Royce Li 提交于 2021-05-10 16:39 . 2020/5/10 First Commit
class Solution:
def rotate(self, matrix) -> None:
"""
Do not return anything, modify matrix in-place instead.
"""
n=len(matrix)
def rotate(offset,n):
if n<=1:
return
for i in range(n-1):
temp=matrix[offset][offset+i]
matrix[offset][offset+i]=matrix[n-1-i+offset][offset]
matrix[n-1-i+offset][offset]=matrix[n-1+offset][n-1-i+offset]
matrix[n-1+offset][n-1-i+offset]=matrix[i+offset][n-1+offset]
matrix[i+offset][n-1+offset]=temp
rotate(offset+1,n-2)
rotate(0,n)
print(matrix)
s=Solution()
s.rotate([
[ 5, 1, 9,11],
[ 2, 4, 8,10],
[13, 3, 6, 7],
[15,14,12,16]
])
'''
执行用时:
32 ms
, 在所有 Python3 提交中击败了
95.26%
的用户
内存消耗:
14.7 MB
, 在所有 Python3 提交中击败了
5.21%
的用户
'''
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/royce-li/leetcode_royce.git
git@gitee.com:royce-li/leetcode_royce.git
royce-li
leetcode_royce
Leetcode_royce
master

搜索帮助