Fix incorrect method name in permutations_ii.go (#1313)

This commit is contained in:
huangjikun
2024-04-30 14:13:01 +08:00
committed by GitHub
parent a3950e1def
commit 84b1ce2497

View File

@@ -23,7 +23,7 @@ func backtrackII(state *[]int, choices *[]int, selected *[]bool, res *[][]int) {
(*selected)[i] = true
*state = append(*state, choice)
// 进行下一轮选择
backtrackI(state, choices, selected, res)
backtrackII(state, choices, selected, res)
// 回退:撤销选择,恢复到之前的状态
(*selected)[i] = false
*state = (*state)[:len(*state)-1]