| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
Tags
- 사이드
- 리얼 클래스
- 3줄정리
- 운동
- 매일
- 파비최
- 읽기
- 30분
- 뭐든
- 링피트
- 만화도
- 영어원서읽기
- Problem Solving
- 10분
- English
- 스탭퍼
- 잡생각
- 월간
- 쓰릴오브파이트
- Daily Challenge
- 프로젝트
- 영어공부
- 괜찮음
- leetcode
- realclass
- Writing
- FIT XR
- 개발자
- 미드시청
- 화상영어
Archives
- Today
- Total
파비의 매일매일 공부기록
Today's Challenge 본문
https://leetcode.com/problems/transpose-matrix/
Transpose Matrix - LeetCode
Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.
leetcode.com
오늘도 Easy 난이도의 문제!
Matrix를 transpose 하는 문제라 어렵지 않게 풀 수 있음.
근데 생각보다 수행 시간이 오래 걸려서.. 이거보다 더 간단한 게 풀 수 있는 방법이 있나 궁금함.
class Solution:
def transpose(self, matrix: List[List[int]]) -> List[List[int]]:
rows, cols = len(matrix), len(matrix[0])
res = [[0 for _ in range(rows)] for __ in range(cols)]
for row in range(rows):
for col in range(cols):
res[col][row] = matrix[row][col]
return res반응형
'Problem Solving > LeetCode' 카테고리의 다른 글
| Today's Challenge (0) | 2022.06.04 |
|---|---|
| Today's Challenge (0) | 2022.06.03 |
| Today's Challenge (0) | 2022.06.01 |
| Today's Challenge (0) | 2022.05.31 |
| Today's Challenge (0) | 2022.05.30 |
Comments