Skip to content

Commit bc81f90

Browse files
committed
Improved 3704
1 parent 7a692e2 commit bc81f90

File tree

1 file changed

+0
-1
lines changed
  • src/main/java/g3701_3800/s3704_count_no_zero_pairs_that_sum_to_n

1 file changed

+0
-1
lines changed

src/main/java/g3701_3800/s3704_count_no_zero_pairs_that_sum_to_n/Solution.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ public long countNoZeroPairs(long n) {
1616
digits[i] = (int) (c % 10);
1717
c = c / 10;
1818
}
19-
2019
long total = 0;
2120
long[] extra = {1, 0};
2221
base = 1;

0 commit comments

Comments
 (0)