일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 컴퓨터의 구조
- Python Code
- t1
- 30. Substring with Concatenation of All Words
- Python Implementation
- 운영체제
- Generator
- Decorator
- kaggle
- attribute
- data science
- 프로그래머스
- 파이썬
- concurrency
- Convert Sorted List to Binary Search Tree
- shiba
- Python
- iterator
- Protocol
- 109. Convert Sorted List to Binary Search Tree
- 밴픽
- Regular Expression
- 시바견
- Class
- 43. Multiply Strings
- DWG
- LeetCode
- 715. Range Module
- 315. Count of Smaller Numbers After Self
- Substring with Concatenation of All Words
Archives
- Today
- Total
목록48. Rotate Image (1)
Scribbling
LeetCode: 48. Rotate Image
Rotating a matrix 90 degrees clockwise can be achieved just by transposing + mirror reversing. class Solution: def rotate(self, matrix: List[List[int]]) -> None: """ Do not return anything, modify matrix in-place instead. """ m, n = len(matrix), len(matrix[0]) for i in range(m): for j in range(i+1, n): matrix[i][j], matrix[j][i] = matrix[j][i], matrix[i][j] for i in range(m): for j in range(n//2..
Computer Science/Coding Test
2021. 9. 5. 20:18