[LeetCode] Unique 3-Digit Even Numbers

3483. Unique 3-Digit Even Numbers

You are given an array of digits called digits. Your task is to determine the number of distinct three-digit even numbers that can be formed using these digits.

Note: Each copy of a digit can only be used once per number, and there may not be leading zeros.

go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package main

func helper(freq map[int]int, at int) int {
res := 0
for k, v := range freq {
if at == 2 {
if k%2 == 1 {
continue
}
freq[k]--
res += helper(freq, at-1)
freq[k]++
}
if at == 1 {
if v == 0 {
continue
}
freq[k]--
res += helper(freq, at-1)
freq[k]++
}
if at == 0 {
if v == 0 || k == 0 {
continue
}
res++
}
}
return res
}

func totalNumbers(digits []int) int {
freq := make(map[int]int)
for _, d := range digits {
freq[d]++
}
return helper(freq, 2)
}

Author: Song Hayoung
Link: https://songhayoung.github.io/2025/03/16/PS/LeetCode/unique-3-digit-even-numbers/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.

Related Issues not found

Please contact @SongHayoung to initialize the comment