Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/t-kalv/python-searching-a-matrix

Python Searching A Matrix
https://github.com/t-kalv/python-searching-a-matrix

algorithm matrix search

Last synced: 3 days ago
JSON representation

Python Searching A Matrix

Awesome Lists containing this project

README

        

# Python-Searching-A-Matrix
Given a matrix that is organised such that the numbers will always be sorted from left to right and the first number of each row will always be greater than the last element of the last row (mat[i][0] > mat[i-1][-1], search for a specific value in the matrix and return whether it exists.