714-best-time-to-buy-and-sell-stock-with-transaction-fee
DevGod needs to write a blog entry for this problem!
/**
* @param {number[]} prices
* @param {number} fee
* @return {number}
*/
var maxProfit = function(prices, fee) {
let dp = [];
};