Letters/Numbers puzzle May31 '06
Here is the situation:
You can use any number from 0-9, and any letter from A-Z.
Now, come up with as many unique letter/number combinations, which can only be four characters in length.
Feasibly, I started out like this:
A000 - A999 is 1,000 different combinations.
B000 - B999 is another 1,000 different combinations.
Continue this until the first digit is the letter Z, you end up with 26,000 different combinations.
Next, change the second digit to A, and proceed like this:
AA00 - AA99 is 100 different combinations.
BA00 - BA99 is another 100 different combinations.
Continue this until the first digit is the letter Z, you end up with another 2,600 different combinations.
This is where it gets confusing.
Here is what I thought would be a logical next step:
AB00 - AB99 is 100 different combinations.
The second digit above - the letter B remains there. Now, we change the first digit:
BB00 - BB99 is another 100 different combinations.
Keep doing this until you get to:
ZB00 - ZB99.
That is another 2,600 different combinations.
Lost yet? (I am getting there.)
The idea is to get as many different combinations of unique letters/numbers, so we never run out.
With only four digits, it is probably not possible, but this approach seems to give the most flexibility.
Categories: Projects ![]()
Add Feedback (view all)
Leave feedback
Wow that is helpful. I really needed that information. It’s actually not a "puzzle" at all. At least, not just for fun. It’s for work, ... Read more.
matthom
is published and produced by Matt Thommes - an independent publishing enthusiast, mobile blogger, content creator, informative writer, web developer from a suburb of Chicago.
Never one to conform, Matt intends to promote the effect the web has on our lives, in an effort to intensify, instruct, and clarify all that is happening around us.
Popular Pages
- Fast rounded corners in Photoshop (5985 recent visits)
- PHP – passing variables across pages (2190 recent visits)
- JavaScript set selected on load (1824 recent visits)
- Removing all child nodes from an element (1311 recent visits)
- iPod songs out of order? (1074 recent visits)
- Firefox 3 smart address bar: wildcard search (988 recent visits)
- Britney - Everytime piano tab (925 recent visits)
- MySQL LEFT JOIN syntax (768 recent visits)
- Breathe Me - Sia (691 recent visits)
- Tumblr: how blogging should be (569 recent visits)
Similar Entries
- Validating credit card numbers: The Luhn algorithm (98 recent visits)
- PHP project: convert times to numbers (80 recent visits)
Stats
20 unique visits since August 2008
Recent Referrers (click)
- unique letters different
- letter and number puzzles
- combinations for a string of letters numbers
- combinations for a string of letters numbers
- puzzles letters and numbers
- show all number combinations with the numbers 0-9
- the letter number puzzle
- letter and number puzzles
- puzzle change numbers to letters
- http://google.com/search?hl=en
- number letter puzzles
- change letters with numbers puzzle
- NUMBER LETTER PUZZLES
- letter number letter puzzle
- numbers puzzle
- number/letter puzzles
- number and letters puzzle
- letters and numbers combinations
- Changing number into letters for puzzle
- "number-letter" puzzle
There should be 1,413,720 different permutations. Number of characters = 10 + 26 = 36 Length of string = 4 P(36, 4) = 36! / ... Read more.