Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.company;
- import java.util.List;
- import java.util.Stack;
- public class Labirint {
- private Point[][] matrix;
- public Labirint(Point[][] array){
- matrix = array;
- }
- public Point[][] getMatrix(){
- return matrix;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement