Write a regular expression that matches numbers whose digits are not repeated (i.e. digits are distinct).
regularExpression.test("123") ➞ true
regularExpression.test("112233") ➞ false
regularExpression.test("1025") ➞ true
Input is a number as a string.