auto commit

This commit is contained in:
CyC2018
2019-11-03 23:57:08 +08:00
parent 791317ed53
commit a704fb6e12
26 changed files with 58 additions and 10 deletions

View File

@ -1,5 +1,7 @@
# 60. n 个骰子的点数
## 题目链接
[Lintcode](https://www.lintcode.com/en/problem/dices-sum/)
## 题目描述
@ -12,7 +14,7 @@
### 动态规划
使用一个二维数组 dp 存储点数出现的次数其中 dp[i][j] 表示前 i 个骰子产生点数 j 的次数
使用一个二维数组 dp 存储点数出现的次数其中 dp\[i]\[j] 表示前 i 个骰子产生点数 j 的次数
空间复杂度O(N<sup>2</sup>)