mirror of
https://github.com/youngyangyang04/leetcode-master.git
synced 2025-07-12 21:50:49 +08:00
Update 0714.买卖股票的最佳时机含手续费.md
修正注释中的用词错误
This commit is contained in:
@ -182,7 +182,7 @@ class Solution { // 动态规划
|
||||
|
||||
int[][] dp = new int[prices.length][2];
|
||||
|
||||
// bad case
|
||||
// base case
|
||||
dp[0][0] = 0;
|
||||
dp[0][1] = -prices[0];
|
||||
|
||||
|
Reference in New Issue
Block a user