1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 17:56:55 +02:00
LeetCode/go/the-number-of-beautiful-subsets.go

33 lines
588 B
Go
Raw Normal View History

package the_number_of_beautiful_subsets
import (
"slices"
)
func beautifulSubsets(nums []int, k int) int {
seen := make(map[int]int)
var dfs func(int) int
dfs = func(i int) int {
// BASE: Got to the end of the slice
if i >= len(nums) {
return 1
}
// Initialize with skipping the current number
foundSubsets := dfs(i + 1)
// Check if we can include the current number
if seen[nums[i]-k] == 0 && seen[nums[i]+k] == 0 {
seen[nums[i]] += 1
foundSubsets += dfs(i + 1)
seen[nums[i]] -= 1
}
return foundSubsets
}
slices.Sort(nums)
return dfs(0) - 1
}