Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. a = [["0", "1", "2"],
  2. ["3", "4", "5"],
  3. ["6", "7", "8"]]
  4.  
  5. b = [[" ", " ", "0", " ", " "],
  6. [" ", "3", " ", "1", " "],
  7. ["6", " ", "4", " ", "2"],
  8. [" ", "7", " ", "5", " "],
  9. [" ", " ", "8", " ", " "]]
  10.  
  11. c = [["00", "01", "02", "03"],
  12. ["04", "05", "06", "07"],
  13. ["08", "09", "10", "11"],
  14. ["12", "13", "14", "15"]]
  15.  
  16. d = [[" ", " ", " ", "00", " ", " ", " "],
  17. [" ", " ", "04", " ", "01", " ", " "],
  18. [" ", "08", " ", "05", " ", "02", " "],
  19. ["12", " ", "09", " ", "06", " ", "03"],
  20. [" ", "13", " ", "10", " ", "07", " "],
  21. [" ", " ", "14", " ", "11", " ", " "],
  22. [" ", " ", " ", "15", " ", " ", " "]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement