Advertisement
minimite

combinations

Feb 5th, 2015
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. start with triple of first character
  2. AAA
  3. increase last by one
  4. AAA
  5. AAB
  6. AAC
  7. et cetera
  8. then when
  9. AAZ
  10. increase second by one each time and reset last, so
  11. ABA
  12. ABB
  13. ABC
  14. ABD
  15. et cetera
  16. when last is up again
  17. ABZ
  18. increase second by one again..
  19. ACA
  20. ACB
  21. et cetera
  22. when the second is up to Z (id est, the maximum character)
  23. AZA
  24. add one to the first one and reset the second!
  25. BAA
  26. BAB
  27. repeat the steps above until
  28. ZZZ
  29. at this point the steps are complete.
  30.  
  31. *capital letters count as regular letters, just add them to the list after the lowercase or vice versa
  32.  
  33. -- KEY --
  34. if for some reason you don't understand the terms used, here are what they mean
  35. et cetera = and so on (same as etc)
  36. vice versa = and the other way around
  37. id est = that is to say
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement