How can i generate a 6 digit unique number? I have verification mechanisms in place to check for duplicate entries.
|
As all numbers between 100,000 and 999,999 are six digits, of course. |
|||
|
|
|
If you want it to start at
Mind you, it's stored as a string. |
|||
|
|
|
Another one:
Anyway, for uniqueness, you will have to check that your number hasn't been already used. Beware because when most numbers will be used, time for getting a new number will increase (since the number of attempts will have to increase), resulting even to an endless loop at the end... |
||||
|
|
|
I would use an algorithm, brute force could be as follows: First time through loop: Generate a random number between 100,000 through 999,999 and call that x1 Second time through the loop Generate a random number between 100,000 and x1 call this xt2, then generate a random number between x1 and 999,999 call this xt3, then randomly choose x2 or x3, call this x2 Nth time through the loop Generate random number between 100,000 and x1, x1 and x2, and x2 through 999,999 and so forth... watch out for endpoints, also watch out for x1 |
|||
|
|
