Computer Science/알고리즘 ( Algorithm )

python 2d array 회전

bugtype 2020. 2. 23. 13:23

 

 

```

arr = [[1,2,3],[4,5,6],[7,8,9]]

 

result = list(zip(*arr[::-1])) # 우측 90도

result2 = list(zip(*arr))[::-1] # 좌측 90도

print(result)

print(result2)

```

'Computer Science > 알고리즘 ( Algorithm )' 카테고리의 다른 글

중복 검사 - Floyd's Algorithm  (0) 2020.03.04
Quicksort 변형  (0) 2020.02.29
피보나치 수열 - 황금비율 문제  (0) 2020.02.22
프로그래머스 - 탑 문제 풀기  (0) 2019.10.12
K번째 수  (0) 2019.10.06