Aug-15-2020, 05:00 PM
How to generate a combination of a password:
The vault password is a combination of 3 letters followed by 3 digits in the LLLDDD format. In addition, it has the following clues:
1 - The password corresponds to a number in hexadecimal. (This means that only the letters A, B, C, D, E and F are valid.)
2 - There are no repeated letters.
3 - The letters A and D are present in the password.
4 - The first digit is 3 or 6
5 - The sum of the digits is 8.
6 - The digit zero does not appear in the password
How to develop a code that lists all possible combinations?
Thanks ;)
The vault password is a combination of 3 letters followed by 3 digits in the LLLDDD format. In addition, it has the following clues:
1 - The password corresponds to a number in hexadecimal. (This means that only the letters A, B, C, D, E and F are valid.)
2 - There are no repeated letters.
3 - The letters A and D are present in the password.
4 - The first digit is 3 or 6
5 - The sum of the digits is 8.
6 - The digit zero does not appear in the password
How to develop a code that lists all possible combinations?

Thanks ;)