반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- CS
- 고득점Kit
- 프로그래머스
- react
- VUE
- 배열
- Doitvue.js입문
- python
- 파이썬
- 카카오
- OS
- 프로그래밍
- 리트코드
- C++
- sql
- 코테연습
- 동적계획법
- javascript
- 백준
- 웹프로그래밍
- 자바스크립트
- Level1
- Medium
- LeetCode
- Level3
- dp
- typescript
- Level2
- 리액트
- web
Archives
- Today
- Total
[리트코드] 48. Rotate Image 본문
반응형
48. Rotate Image
문제
You are given an n x n 2D matrix representing an image, rotate the image by 90 degrees (clockwise).
You have to rotate the image in-place, which means you have to modify the input 2D matrix directly. DO NOT allocate another 2D matrix and do the rotation.
제한사항
- n == matrix.length == matrix[i].length
- 1 <= n <= 20
- -1000 <= matrix[i][j] <= 1000
풀이
그림을 그려서 규칙을 확인해보면
[0] [0] 부터 [n//2 - 1] [(n + 1) // 2 -1]을 시작점으로 해서
b = a
a = d
d = c
c = b
로 값이 변경되는 것을 확인할 수 있다.
class Solution:
def rotate(self, matrix: List[List[int]]) -> None:
"""
Do not return anything, modify matrix in-place instead.
"""
n = len(matrix)
for i in range(n//2):
for j in range((n + 1)//2):
tmp = matrix[j][n-i-1] # b
matrix[j][n-i-1] = matrix[i][j] # b = a
matrix[i][j] = matrix[n - j - 1][i] # a = d
matrix[n - j - 1][i] = matrix[n - i - 1][n - j - 1]# d =c
matrix[n - i - 1][n - j - 1] = tmp # c = b
제한 조건 때문에 그렇지 사실 한 줄로도 만들 수 있다.
[list(reversed(i)) for i in zip(*matrix)] # 시계 방향 90도 회전
[i for i in zip(*matrix)][::-1] # 반시계 방향 90도 회전
반응형
'코테 문제 풀이' 카테고리의 다른 글
[프로그래머스] 베스트앨범 - python (0) | 2022.04.14 |
---|---|
[프로그래머스] 위장 - python (0) | 2022.04.14 |
[리트코드] 18. 4Sum - python (0) | 2022.04.14 |
[리트코드] 16. 3Sum Closest (0) | 2022.04.14 |
[리트코드] 15. 3Sum - python (0) | 2022.04.14 |
Comments