2022-07-20 解題區►Leetcode►Easy Leetcode 118 - Pascal's Triangle 題目 Problem# 給你 n 要你建 n 層的帕斯卡三角形 想法# 照著帕斯卡三角形的規則建立即可 時間複雜度: $\mathcal{O}(n^2)$ 空間複雜度: $\mathcal{O}(n^2)$ AC Code# 賞析# https://leetcode.com/problems/pascals-triangle/discuss/38171/Maybe-shortest-c%2B%2B-solution 先建好 vector 再 resize,看起來蠻漂亮的 Newer Leetcode 119 - Pascal's Triangle II Older Leetcode 566 - Reshape the Matrix