Skip to content

Commit 2af7635

Browse files
committed
2022-06-20 update: added "Number of Digit One"
1 parent 5efddd3 commit 2af7635

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
package com.smlnskgmail.jaman.leetcodejava.hard;
2+
3+
// https://leetcode.com/problems/number-of-digit-one/
4+
public class NumberOfDigitOne {
5+
6+
private final int input;
7+
8+
public NumberOfDigitOne(int input) {
9+
this.input = input;
10+
}
11+
12+
public int solution() {
13+
int result = 0;
14+
for (int i = 1; i <= input; i *= 10) {
15+
int div = i * 10;
16+
result += (input / div) * i + Math.min(Math.max(input % div - i + 1, 0), i);
17+
}
18+
return result;
19+
}
20+
21+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
package com.smlnskgmail.jaman.leetcodejava.hard;
2+
3+
import org.junit.Test;
4+
5+
import static org.junit.Assert.assertEquals;
6+
7+
public class NumberOfDigitOneTest {
8+
9+
@Test
10+
public void defaultTest() {
11+
assertEquals(
12+
6,
13+
new NumberOfDigitOne(13).solution()
14+
);
15+
}
16+
17+
}

0 commit comments

Comments
 (0)