Posts

Showing posts from June, 2021

Rat In a Maze All Paths

You are given a N*N maze with a rat placed at maze[0][0]. Find and print all paths that rat can follow to reach its destination i.e. maze[N-1][N-1]. Rat can move in any direc­tion ( left, right, up and down). Value of every cell in the maze can either be 0 or 1. Cells with value 0 are blocked means rat can­not enter into those cells and those with value 1 are open. Input Format The first line of input contains an integer 'N' representing the dimension of the maze. The next N lines of input contain N space-separated integers representing the type of the cell. Output Format : For each test case, print the path from start position to destination position and only cells that are part of the solution path should be 1, rest all cells should be 0. Output for every test case will be printed in a separate line. Note: You do not need to print anything, it has already been taken care of. Just implement the given function. Constraints: 0 < N < 11 0 <= Maze[i][j] <=1 Time Lim

Popular posts from this blog

How to pass parameters in webhook?

Access and modify all the resources of our Wiki.js using WikiJS API

Fahrenheit to Celsius