Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. (state, read: write, direction, new_state)
  2.  
  3. (0, 0: 0, R, 0)
  4. (0, 1: 0, R, 1)
  5.  
  6. (1, 0: 0, R, 2)
  7. (1, 1: 0, R, 3)
  8.  
  9. (2, 0: 0, R, 4)
  10. (2, 1: 1, R, 0)
  11.  
  12. (3, 0: 1, R, 1)
  13. (3, 1: 1, R, 2)
  14.  
  15. (4, 0: 1, R, 3)
  16. (4, 1: 1, R, 4)
  17.  
  18. ...[][][]110011[][][]...
  19. ...[][][]1001010[][][]...
  20. ...[][][]0011001[][][]...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement