Update 0714.买卖股票的最佳时机含手续费.md

修正注释中的用词错误
This commit is contained in:
El nino
2023-01-22 13:37:36 +08:00
committed by GitHub
parent b355d79c46
commit 1174602e91

View File

@ -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];