Smallest Multiple With 0 and 1
Problem
You are given an integer N. You have to find smallest multiple of N which consists of digits 0 and 1 only. Since this multiple could be large, return it in form of a string.
Hint
Solution
Code - here
Practice - interviewBit