Mutating counts without cleanup
Wrong move: Zero-count keys stay in map and break distinct/count constraints.
Usually fails on: Window/map size checks are consistently off by one.
Fix: Delete keys when count reaches zero.
Move from brute-force thinking to an efficient approach using hash map strategy.
Given a positive integer k, you need to find the length of the smallest positive integer n such that n is divisible by k, and n only contains the digit 1.
Return the length of n. If there is no such n, return -1.
Note: n may not fit in a 64-bit signed integer.
Example 1:
Input: k = 1 Output: 1 Explanation: The smallest answer is n = 1, which has length 1.
Example 2:
Input: k = 2 Output: -1 Explanation: There is no such positive integer n divisible by 2.
Example 3:
Input: k = 3 Output: 3 Explanation: The smallest answer is n = 111, which has length 3.
Constraints:
1 <= k <= 105Problem summary: Given a positive integer k, you need to find the length of the smallest positive integer n such that n is divisible by k, and n only contains the digit 1. Return the length of n. If there is no such n, return -1. Note: n may not fit in a 64-bit signed integer.
Start with the most direct exhaustive search. That gives a correctness anchor before optimizing.
Pattern signal: Hash Map · Math
1
2
3
Source-backed implementations are provided below for direct study and interview prep.
// Accepted solution for LeetCode #1015: Smallest Integer Divisible by K
class Solution {
public int smallestRepunitDivByK(int k) {
int n = 1 % k;
for (int i = 1; i <= k; ++i) {
if (n == 0) {
return i;
}
n = (n * 10 + 1) % k;
}
return -1;
}
}
// Accepted solution for LeetCode #1015: Smallest Integer Divisible by K
func smallestRepunitDivByK(k int) int {
n := 1 % k
for i := 1; i <= k; i++ {
if n == 0 {
return i
}
n = (n*10 + 1) % k
}
return -1
}
# Accepted solution for LeetCode #1015: Smallest Integer Divisible by K
class Solution:
def smallestRepunitDivByK(self, k: int) -> int:
n = 1 % k
for i in range(1, k + 1):
if n == 0:
return i
n = (n * 10 + 1) % k
return -1
// Accepted solution for LeetCode #1015: Smallest Integer Divisible by K
impl Solution {
pub fn smallest_repunit_div_by_k(k: i32) -> i32 {
let mut n = 1 % k;
for i in 1..=k {
if n == 0 {
return i;
}
n = (n * 10 + 1) % k;
}
-1
}
}
// Accepted solution for LeetCode #1015: Smallest Integer Divisible by K
function smallestRepunitDivByK(k: number): number {
let n = 1 % k;
for (let i = 1; i <= k; ++i) {
if (n === 0) {
return i;
}
n = (n * 10 + 1) % k;
}
return -1;
}
Use this to step through a reusable interview workflow for this problem.
For each element, scan the rest of the array looking for a match. Two nested loops give n × (n−1)/2 comparisons = O(n²). No extra space since we only use loop indices.
One pass through the input, performing O(1) hash map lookups and insertions at each step. The hash map may store up to n entries in the worst case. This is the classic space-for-time tradeoff: O(n) extra memory eliminates an inner loop.
Review these before coding to avoid predictable interview regressions.
Wrong move: Zero-count keys stay in map and break distinct/count constraints.
Usually fails on: Window/map size checks are consistently off by one.
Fix: Delete keys when count reaches zero.
Wrong move: Temporary multiplications exceed integer bounds.
Usually fails on: Large inputs wrap around unexpectedly.
Fix: Use wider types, modular arithmetic, or rearranged operations.