fix: comment error

This commit is contained in:
Flamingo 2024-06-28 00:36:04 +08:00
parent a7c241609f
commit bedc912b2c

View File

@ -18,7 +18,7 @@ func dfs(nums []int, target, i, j int) int {
// 递归子问题 f(m+1, j)
return dfs(nums, target, m+1, j)
} else if nums[m] > target {
// 于则递归左半数组
// 于则递归左半数组
// 递归子问题 f(i, m-1)
return dfs(nums, target, i, m-1)
} else {