Do you know a method to check if a value can be divided by a combination of integer value in a range?
For example let's say I have 100, and I want to divide it by a cobination of value between 20 and 24. in this case it is possible: 100 / 20 = 5.
But if I want to divide 100 by a combination of values between 21 and 22, I believe it does not work.
Is there a method to know if the case is possible given the value and the range?