array 03: rotate image(翻转列表,解压参数)



1. 题目

Note: Try to solve this task in-place (with O(1) additional memory), since this is what you’ll be asked to do during an interview.

You are given an n x n 2D matrix that represents an image. Rotate the image by 90 degrees (clockwise).

Example

Input/Output


2. 解法

个人解法

def rotateImage(a):
    shift_a = a[::-1]
    retate_a = [x for x in zip(*shift_a)]
    return retate_a

原本写的惨不忍睹,这是根据下面精品写法改善了一下可读性贴上来

精品解法

rotateImage = lambda a: zip(*a[::-1])

重点在于a[::-1]翻转列表,*args解压参数