algoritme til at finde retning
public void printPosibleDirections(int N, char[][] map, int row, int col) {// TODO: Implement this
char vaeg = '#';
// retning syd(Ned)
if(map[row+1][col] != vaeg && map[row][col] != vaeg && row < map.length-1)
System.out.print("S ");
//retning nord(op)
if(map[row-1][col] != vaeg && map[row][col] != vaeg && row > 0)
System.out.print("N ");
//retning øst(højre)
if(map[row][col-1] != vaeg && map[row][col] != vaeg && col < map.length-1)
System.out.print("E ");
//retning vest(venstre)
if(map[row][col+1] != vaeg && map[row][col] != vaeg && col > 0)
System.out.print("W ");
}