320x100
문제 : https://leetcode.com/problems/pascals-triangle/
numRows가 주어질 때, numRows 크기의 파스칼의 삼각형을 구하여라.
파스칼의 삼각형의 원소는 바로 위에 있는 두 원소의 합이다.
answer[i][j] = answer[i-1][j-1] + answer[i-1][j]
위 연산을 모든 원소에 적용하면 답을 수할 수 있다.
시간복잡도는 1+2+ ... + numRows = 대략 O(numRows^2 /2).
소스코드 : https://github.com/fpdjsns/Algorithm/blob/master/leetcode/easy/118.%20Pascal's%20Triangle.cpp
320x100
'알고리즘 문제 > Leetcode' 카테고리의 다른 글
[leetcode] 684. Redundant Connection (0) | 2021.06.26 |
---|---|
[Leetcode][576] Out of Boundary Paths (0) | 2021.06.25 |
[leetcode][778] Swim in Rising Water] (0) | 2021.06.21 |
[leetcode][795] Number of Subarrays with Bounded Maximum (0) | 2021.06.19 |
[Leetcode][583] Delete Operation for Two Strings (0) | 2021.05.08 |
댓글