28. Traversal on Grids
Easy

Problem Statement

Introduction to visualizing and traversing 2D matrices / grids as graphs using DFS and BFS.

Examples

1Example 1
Input:
{}
Output:
null
2Example 2
Input:
{}
Output:
null
3Example 3
Input:
{}
Output:
null
Loading...

Sign in to Run Code and Submit