Advertisement
Guest User

Untitled

a guest
Jan 15th, 2019
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. INVALID: Note the trailing spaces to make the ASCII-art a rectangle (or square in this case):
  2. ###
  3. #
  4. #
  5.  
  6. VALID: No trailing spaces
  7. ###
  8. #
  9. #
  10.  
  11. Or in your case:
  12. INVALID: [[true,true,true],[false,true,false],[false,true,false]]
  13. VALID: [[true,true,true],[false,true],[false,true]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement