Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 620 Bytes

0118.pascals-triangle.md

File metadata and controls

38 lines (26 loc) · 620 Bytes

0118.Pascals-Triangle

[!WARNING|style:flat] This question is temporarily unanswered if you have good ideas. Welcome to Create Pull Request PR

Description

Example 1:

Input: 5
Output:
[
     [1],
    [1,1],
   [1,2,1],
  [1,3,3,1],
 [1,4,6,4,1]
]

题意

...

题解

思路1

... Pascal's Triangle

结语

如果你同我一样热爱数据结构、算法、LeetCode,可以关注我 GitHub 上的 LeetCode 题解:awesome-golang-algorithm