An open API service indexing awesome lists of open source software.

https://github.com/brisinger/matrix

Matrix traversal using dept-first search with backtracking to count no. of contiguous zeroes adjacent to each other
https://github.com/brisinger/matrix

backtracking-algorithm depth-first-search flood-fill matrix

Last synced: 6 months ago
JSON representation

Matrix traversal using dept-first search with backtracking to count no. of contiguous zeroes adjacent to each other

Awesome Lists containing this project

README

          

# Matrix depth first search solutions.

## Project structure
Root directory
|
|
matrix
|__ src
| |__ __init__.py
| |__ matrix_zeroes.py
|__ tests
|__ __init__.py
|__ test_matrix_zeroes.py

## Project Details
1. Python version: Python 3.10.5
2. Python Test Framework: unittest

## Project test from CLI
Current working directory in CLI before running commands: matrix
1. Command: python -m unittest -v