Advertisement
Guest User

Untitled

a guest
Mar 30th, 2020
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. import java.util.*;
  2.  
  3. public class Main {
  4. public static void main(String[] args) {
  5. Labyrintti l = new Labyrintti();
  6. char[][] t = {{'#','#','#','#','#','#','#'},
  7. {'#','x','#','.','y','.','#'},
  8. {'#','.','#','.','#','.','#'},
  9. {'#','.','.','.','.','.','#'},
  10. {'#','#','#','#','#','#','#'}};
  11. System.out.println(l.etsi(t)); // AAOOYYO
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement