1015. Smallest Integer Divisible by K
Input: k = 1
Output: 1
Explanation: The smallest answer is n = 1, which has length 1.Input: k = 2
Output: -1
Explanation: There is no such positive integer n divisible by 2.Input: k = 3
Output: 3
Explanation: The smallest answer is n = 111, which has length 3.Last updated