mirror of
https://github.com/krahets/hello-algo.git
synced 2025-07-07 06:44:57 +08:00
feat: Add pythontutor blocks to the rest of the chapters (#1030)
* Fix Python code * Add the pythontutor blocks of the chapter tree, heap, graph, searching, sorting, divide and conquer, dynamic programming and greedy. Improve the pythontutor blocks of the chapter array and linkedlist and backtracking. Add the tutorial of pythontutor in how-to-read section. * Reduce the image's file size.
This commit is contained in:
@ -48,7 +48,6 @@ def coin_change_ii_dp_comp(coins: list[int], amt: int) -> int:
|
||||
if __name__ == "__main__":
|
||||
coins = [1, 2, 5]
|
||||
amt = 5
|
||||
n = len(coins)
|
||||
|
||||
# 动态规划
|
||||
res = coin_change_ii_dp(coins, amt)
|
||||
|
Reference in New Issue
Block a user