We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0e1c77 commit d0be0dcCopy full SHA for d0be0dc
src/main/java/com/fishercoder/solutions/_625.java
@@ -3,25 +3,6 @@
3
import java.util.ArrayList;
4
import java.util.List;
5
6
-/**
7
- * 625. Minimum Factorization
8
- *
9
- * Given a positive integer a, find the smallest positive integer b whose multiplication of each digit equals to a.
10
-
11
- If there is no answer or the answer is not fit in 32-bit signed integer, then return 0.
12
13
- Example 1
14
- Input:
15
- 48
16
- Output:
17
- 68
18
19
- Example 2
20
21
- 15
22
23
- 35
24
- */
25
public class _625 {
26
27
public static class Solution1 {
0 commit comments