akshitagit / akshitagit/Python

MATRIX SEARCH

未關閉
#89 8 則留言 0 個 reaction 已指派 1 人 已被 @sagarr70 認領 在 GitHub 檢視
algorithms datastructures DSA good first issue hacktoberfest hacktoberfest2020 hactoberfest
主要語言
Python
星號
124
分支
109
PR 合併指標
30 天內沒有已合併 PR

描述

STAR THIS REPO!

Given an n x m matrix, where every row and column is sorted in increasing order, and a number x . Find if element x is present in the matrix or not.

Input Format

First line consists of two space separated integers N and M, denoting the number of element in a row and column respectively. Second line of each test case consists of N*M space separated integers denoting the elements in the matrix in row major order. Third line of each test case contains a single integer x, the element to be searched.
Constraints

1 <= N,M <= 30 0 <= A[i] <= 100000

Output Format

Print 1 if the element is present in the matrix, else 0.

Sample Input

3 3
3 30 38
44 52 54
57 60 69

62

Sample Output

0

貢獻指南

開啟貢獻指南

評估

這個 Issue 還沒有評估資料。

把新 issue 寄到你的電子郵件信箱

精選適合新手參與的 GitHub issue 摘要。