Skip to content

Commit c1a048c

Browse files
committed
adjust format
1 parent 3aa294e commit c1a048c

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

dynamic_programming/HouseRobber.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
# House Robber series
2-
Translator: [cooker](https://github.com/xiaochuhub)
3-
Author: [labuladong](https://github.com/labuladong)
2+
3+
**Translator**: [cooker](https://github.com/xiaochuhub)
4+
5+
**Author**: [labuladong](https://github.com/labuladong)
46

57
I find that this series of problems are highly praised. They are representative and skillful dynamic planning problems.
68
Today I will introduce an generalized method to solve all of these problems.
79

810
House robber series includes three problems. The difficulty design is very reasonable and progressive.
911
The first ([house robber](https://leetcode.com/problems/house-robber/)) is a standard dynamic programming problem.
12+
1013
The second ([house robber ii](https://leetcode.com/problems/house-robber-ii/)) include incorporates the condition of a circular array.
14+
1115
The third ([house robber iii](https://leetcode.com/problems/house-robber-iii/)) is quite amazing which combines the bottom-up and top-down solutions of dynamic programming with a binary tree.
1216
If you haven't done it, I highly recommend this series of problems.
1317

0 commit comments

Comments
 (0)