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 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.
Similar Entries
- Validating credit card numbers: The Luhn algorithm (427 recent visits)
- PHP project: convert times to numbers (303 recent visits)
Stats
127 unique visits since August 2008
Recent Referrers (click)
- numbers to letters puzzle
- puzzle letters
- Letter and Number Puzzle
- letters and number puzzle
- letter/number puzzle
- letter and number puzzles
- number letter puzzles
- number letter puzzles
- number letter puzzles
- number letter puzzles
- matt in letters
- different combinations of numbers a-z
- number to letter puzzles
- number-letter puzzles
- matt numbers latters
- series letter number puzzles
- combinations from numbers to letters
- number letter puzzles
- puzzles with numbers and letters
- Puzzle including letters and numbers
There should be 1,413,720 different permutations. Number of characters = 10 + 26 = 36 Length of string = 4 P(36, 4) = 36! / ... Read more.