Advertisement
Guest User

Untitled

a guest
Sep 20th, 2017
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. Alphabet {a, b, c, d} with 3 letters used
  2.  
  3. * 24 possible keys (= (4 choose 3) * 3!)
  4.  
  5. 1 2 3
  6.  
  7. a b c
  8. a c b
  9. b a c
  10. b c a
  11. c a b
  12. c b a
  13.  
  14. a b d
  15. a d b
  16. b a d
  17. b d a
  18. d a b
  19. d b a
  20.  
  21. b c d
  22. b d c
  23. c b d
  24. c d b
  25. d b c
  26. d c b
  27.  
  28. a c d
  29. a d c
  30. c a d
  31. c d a
  32. d a c
  33. d c a
  34.  
  35. * Set 1 = a => 6 possible keys (= (3 choose 2) * 2!)
  36.  
  37. 2 3
  38. b c
  39. c b
  40.  
  41. b d
  42. d b
  43.  
  44. c d
  45. d c
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement