Skip to content

Commit 1856f7b

Browse files
authored
Update README_EN.md
1 parent 7f40d11 commit 1856f7b

File tree

1 file changed

+1
-9
lines changed
  • solution/3300-3399/3348.Smallest Divisible Digit Product II

1 file changed

+1
-9
lines changed

solution/3300-3399/3348.Smallest Divisible Digit Product II/README_EN.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ tags:
104104
#### Go
105105

106106
```go
107-
smallestNumber(num string, t int64) string {
107+
func smallestNumber(num string, t int64) string {
108108
primeCount, isDivisible := getPrimeCount(t)
109109
if !isDivisible {
110110
return "-1"
@@ -236,14 +236,6 @@ func sumValues(count map[int]int) int {
236236
}
237237
return sum
238238
}
239-
240-
func max(a, b int) int {
241-
if a > b {
242-
return a
243-
}
244-
return b
245-
}
246-
247239
```
248240

249241
<!-- tabs:end -->

0 commit comments

Comments
 (0)