func Clean(nums []int, x int) []int { return slices.DeleteFunc(nums, func(v int) bool { return v == x })}