代码拉取完成,页面将自动刷新
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%
的用户
'''
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。