Skip to content

Commit 3d9c8ef

Browse files
committedMar 12, 2019
update-doc-at-3.12
1 parent d5a1000 commit 3d9c8ef

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+1332
-26
lines changed
 

‎LeetCode/Doc/doc-sample.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# candy
2+
3+
<center>知识点:</center>
4+
5+
6+
## 题目描述
7+
8+
9+
10+
## 解题思路
11+
12+
13+
14+
## 代码
15+
16+
[这里](../Code/n.py)

‎LeetCode/Doc/triange.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# candy
2+
3+
<center>知识点:</center>
4+
5+
6+
## 题目描述
7+
8+
Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.
9+
10+
For example, given the following triangle
11+
12+
[
13+
[2],
14+
[3,4],
15+
[6,5,7],
16+
[4,1,8,3]
17+
]
18+
19+
The minimum path sum from top to bottom is11(i.e., 2 + 3 + 5 + 1 = 11).
20+
21+
Note:
22+
Bonus point if you are able to do this using only O(n) extra space, where n is the total number of rows in the triangle.
23+
24+
25+
26+
## 解题思路
27+
28+
29+
30+
## 代码
31+
32+
[这里](../Code/n.py)

0 commit comments

Comments
 (0)