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
- SQL
- 코딩테스트
- implement
- 코테
- 구현
- geometry
- string
- Tree
- sorting
- greedy
- Method
- 자바
- Binary Search
- Number Theory
- Class
- Data Structure
- hash table
- array
- two pointers
- 파이썬
- database
- simulation
- java
- Matrix
- Counting
- dynamic programming
- bit manipulation
- Binary Tree
- Stack
- Math
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 119. Pascal's Triangle II 본문
1. Input
1) int rowIndex
2. Output
1) 파스칼 삼각형에서 위에서 rowIndex+1층에 위치한 수를 리스트에 담아 반환
3. Constraint
1) 0 <= rowIndex <= 33
4. Example
Input: rowIndex = 3 -> Output: [1,3,3,1]
5. Code
1) 첫 코드(2023/05/12)
class Solution {
public List<Integer> getRow(int rowIndex) {
int[][] triangle = new int[rowIndex+1][rowIndex+1];
for(int[] a : triangle)
Arrays.fill(a, 1);
for(int i=2 ; i<=rowIndex ; i++)
for(int j=1 ; j<i ; j++)
triangle[i][j] = triangle[i-1][j-1] + triangle[i-1][j];
List<Integer> answer = new ArrayList<Integer>();
for(int i=0 ; i<=rowIndex ; i++)
answer.add(triangle[rowIndex][i]);
return answer;
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 145. Binary Tree Postorder Traversal (0) | 2023.05.12 |
---|---|
[LeetCode/Easy] 144. Binary Tree Preorder Traversal (0) | 2023.05.12 |
[LeetCode/Easy] 118. Pascal's Triangle (0) | 2023.05.12 |
[백준 온라인 저지] 24416. 알고리즘 수업 - 피보나치 수 1 (0) | 2023.05.12 |
[백준 온라인 저지] 10798. 세로읽기 (0) | 2023.05.12 |