Guest User

Untitled

a guest
Feb 20th, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.36 KB | None | 0 0
  1.        Pieces.put("W", new int[][] { {1, 1, 0}, {0, 1, 1}, {0, 0, 1} });
  2.         Pieces.put("Z", new int[][] { {0, 1, 1}, {0, 1, 0}, {1, 1, 0} });
  3.         Pieces.put("I", new int[][] { {1}, {1}, {1}, {1}, {1} });
  4.         Pieces.put("L", new int[][] { {1, 1}, {1, 0}, {1, 0}, {1, 0}});
  5.         Pieces.put("U", new int[][] { {1, 1}, {1, 0}, {1, 1} });
  6.         Pieces.put("T", new int[][] { {1, 1, 1}, {0, 1, 0}, {0, 1, 0} });
  7.         Pieces.put("X", new int[][] { {0, 1, 0}, {1, 1, 1}, {0, 1, 0} });
  8.         Pieces.put("V", new int[][] { {1, 1, 1}, {0, 0, 1}, {0, 0, 1} });
  9.         Pieces.put("F", new int[][] { {0, 1, 0}, {1, 1, 0}, {0, 1, 1} });
  10.         Pieces.put("P", new int[][] { {1, 0}, {1, 1}, {1, 1} });
  11.         Pieces.put("Y", new int[][] { {1, 0}, {1, 0}, {1, 1}, {1, 0} });
  12.         Pieces.put("N", new int[][] { {0, 1}, {1, 1}, {1, 0}, {1, 0} });
  13.         Pieces.put("z", new int[][] { {0, 1, 1}, {1, 1, 0} }); 
  14.  
  15.     piecesMap.put("1", new int[][]{{1}});
  16.         piecesMap.put("2", new int[][]{{1}, {1}});
  17.         piecesMap.put("v", new int[][]{{1,1}, {1,0}});
  18.         piecesMap.put("3", new int[][]{{1}, {1}, {1}});
  19.         piecesMap.put("t", new int[][]{{1, 1, 1}, {0, 1, 0}});
  20.         piecesMap.put("s", new int[][]{{1, 1}, {1, 1}});
  21.         piecesMap.put("d", new int[][]{{1, 1}, {0, 1}, {0, 1}});
  22.         piecesMap.put("i", new int[][]{{1}, {1}, {1}, {1}});
Add Comment
Please, Sign In to add comment