48. Rotate Image
class Solution:
def rotate(self, matrix: List[List[int]]) -> None:
"""
Do not return anything, modify matrix in-place instead.
"""
h = len(matrix[0])
# transpose
for i in range(h):
for j in range(i, h):
matrix[j][i], matrix[i][j] = matrix[i][j], matrix[j][i]
for i in range(h):
matrix[i].reverse()
Tranpose -> reverse 하면 되는 쉬운
Runtime: 32 ms, faster than 81.59% of Python3 online submissions for Rotate Image.
Memory Usage: 14.3 MB, less than 17.96% of Python3 online submissions for Rotate Image.
Author And Source
이 문제에 관하여(48. Rotate Image), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@jwade/48.-Rotate-Image저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)