Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2011
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. legend: _ = safe square
  2. . = unknown
  3. @ = mine
  4. 0-9 = corresponding number
  5.  
  6. examples of 1 level patterns:
  7.  
  8. _ _ _ _ _ _
  9. _ 1 . -> _ 1 @
  10. _ _ _ _ _ _
  11.  
  12. @ . . @ _ _
  13. . 1 . -> _ 1 _
  14. . . . _ _ _
  15.  
  16. . _ _ @ _ _
  17. _ 2 _ -> _ 2 _
  18. _ _ . _ _ @
  19.  
  20. @ . . @ _ _
  21. . 3 @ -> _ 3 @
  22. . @ . _ @ _
  23.  
  24. @ @ @ @ @ @
  25. @ 7 @ -> @ 7 @
  26. . @ @ _ @ @
  27.  
  28. etc
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement