This website uses cookies to enhance the user experience

Find Target in a Maze

Difficulty: 💪🏽 Medium

Problem Statement

Given a 2D grid of characters where 'S' represents the start position, 'T' represents the target, 'O' represents open spaces, and 'X' represents walls, find the shortest path from 'S' to 'T'. You can move up, down, left, or right.

Example
Input: grid = [
  ['S', 'O', 'X', 'O'],
  ['O', 'O', 'X', 'O'],
  ['X', 'O', 'O', 'T'],
  ['O', 'X', 'X', 'O']
]
Output: 5
Explanation: The shortest path is 5 steps.
Constraints
  • The grid will have at most 1000 rows and columns.

Expected Challenge Output

When the function findShortestPath is called with the given example input, the expected output is:

  • For the input grid, the output is 5.

const grid = [
  ['S', 'O', 'X', 'O'],
  ['O', 'O', 'X', 'O'],
  ['X', 'O', 'O', 'T'],
  ['O', 'X', 'X', 'O']
];
console.log(findShortestPath(grid));  // Output: 5
function findShortestPath(grid) {
// YOUR SOLUTION HERE
}

Memory: 0

CPU: 0