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 |
Tags
- Binary Search
- Binary Tree
- Class
- Tree
- greedy
- dynamic programming
- geometry
- 파이썬
- Data Structure
- Counting
- 자바
- Stack
- implement
- 코딩테스트
- string
- Matrix
- database
- bit manipulation
- sorting
- SQL
- simulation
- java
- array
- 코테
- Method
- Number Theory
- 구현
- hash table
- Math
- two pointers
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 566. Reshape the Matrix 본문
1. Input
1) m행 n열 int 2차원 배열 mat
2) 정수 r
3) 정수 c
2. Output
1) mat을 r행 c열로 재배열한 2차원 배열
3. Constraint
1) m == mat.length
2) n == mat[i].length
3) 1 <= m, n <= 100
4) -1000 <= mat[i][j] <= 1000
5) 1 <= r, c <= 300
4. Example
Input: mat={{1,2},{3,4}}, r=1, c=4 -> Output={{1,2,3,4}}
5. Code
1) 첫 코드(2022/07/24)
int elements = mat.length * mat[0].length;
if(elements!=r*c)
return mat;
int[][] reshape = new int[r][c];
int ri=0, ci=0;
for(int i=0 ; i<mat.length ; i++)
for(int j=0 ; j<mat[0].length ; j++){
reshape[ri][ci] = mat[i][j];
ci++;
if(ci==c){
ri++; ci = 0;
}
}
return reshape;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 657. Robot Return to Origin (0) | 2022.12.04 |
---|---|
[LeetCode/Easy] 598. Range Addition II (0) | 2022.12.04 |
[프로그래머스/Lv.2] 점프와 순간 이동 (0) | 2022.12.02 |
[LeetCode/Easy] 27. Remove Element (0) | 2022.12.02 |
[LeetCode/Easy] 561. Array Partition (0) | 2022.12.02 |