Depth / Breath First Search Matrix Traversal in Python with Interactive Code [ Back to Basics ]
https://towardsdatascience.com/depth-breath-first-search-matrix-traversal-in-python-with-interactive-code-back-to-basics-31f1eca46f55
Search algorithms are the perfect place to start when you want to know more about algorithms as well as artificial intelligence. So lets start with the basics Breath first search and Depth-first search to traversal a matrix.
Please take note the code is not optimized in any other method. It is brute force implementation. So be caution.