1015. Smallest Integer Divisible by K
https://leetcode.com/problems/smallest-integer-divisible-by-k
Description
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:
Example 2:
Example 3:
Constraints:
1 <= k <= 105
ac
Last updated