Given a range of hexadecimal numbers, how do I determine the total number of them that do not look like decimal numbers?
Background: I'm designing a system that auto-generates IDs that consist of four digit hexadecimal numbers but I want to exclude those that looks like decimal numbers so that users are not confused. I only want to know that with that restriction, how many IDs can the system generate (and decide if I need to increase the number of digits or not).
N.B. I can easily detect if a hexadecimal number looks like a decimal number or not though.
hexadecimal. Incidentally, http://codegolf.stackexchange.com/ might enjoy this problem. – Travis Willse Jan 04 '16 at 04:14DEADorBEEFwould not confuse users? – Déjà vu Jan 04 '16 at 04:21