Canadian Computing Competition: 2013 Stage 1, Junior #3, Senior #1
You might be surprised to know that 2013 is the first year since 1987 with distinct digits. The years 2014, 2015, 2016, 2017, 2018, 2019 each have distinct digits. 2012 does not have distinct digits, since the digit 2 is repeated.
Given a year, what is the next year with distinct digits?
Input Specification
The input consists of one integer (
), representing
the starting year.
Output Specification
The output will be the single integer , which is the next year after
with distinct digits.
Sample Input 1
1987
Output for Sample Input 1
2013
Sample Input 2
999
Output for Sample Input 2
1023
Comments
Do not forget to take in consideration top range of the input. For example: 9999
Can someone explain why I got an IR on my submission? The judge didn't explain what type of invalid return it was.
I would not recommend relying on the judge to tell you what kind of IR you are getting. I would recommend testing your code in whichever ide you are using : ) Furthermore, try testing your code out with the sample input.
lol every time I finish the question I look at the best submission and go :facepalm:
i feel u
if input is 9876 or 10000 shouldn't the answer be 10234?
Yes, for those 2 cases it will be 10234.