class Solution: def search(self,matrix, n, m, x): ri,ci=0,m-1 while(ri=0): ele = matrix[ri][ci] if ele == x: return 1 elif ele
@Code206 Жыл бұрын
(using left to right) bool search(vector matrix, int n, int m, int x) { // code here int left = 0, right = m-1; while(left-1){ int curr = matrix[left][right]; if(x == curr) return 1; if(x > curr) left++; else right--; } return 0; }
@HelloWorldbyprince Жыл бұрын
good job
@bhargavsolanki63863 жыл бұрын
Awesome bro, keep it up. Pls.. Upload interview related program questions.
@HelloWorldbyprince3 жыл бұрын
Thank you 💗
@NOTHING88857 Жыл бұрын
🤩i solved it without saw solution bhaiya feed good
@HelloWorldbyprince Жыл бұрын
good work buddy
@muntahahasan28573 жыл бұрын
Thanks 😊
@masumali8356 Жыл бұрын
lovely work...thank you masum.
@HelloWorldbyprince Жыл бұрын
Most welcome 😊
@ashb8552 Жыл бұрын
this works well class Solution { private: int binSe(vector arr, int k , int l , int h) { while(l k) { h=mid-1; } else{ l = mid+1; } // mid = l+(h-l)/2; } return 0; } public: //Function to search a given number in row-column sorted matrix. bool search(vector matrix, int n, int m, int x) { for (int i = 0; i < n; i++) { if (x >= matrix[i][0] && x
@HelloWorldbyprince Жыл бұрын
Waoooo great
@ashb8552 Жыл бұрын
@@HelloWorldbyprince thx sir Means alot u replied😅
@kanharajput54433 жыл бұрын
Median of a row wise sorted matrix Please make a video of this problem.
@HelloWorldbyprince3 жыл бұрын
Sure 😃😃
@kanharajput54433 жыл бұрын
Thanks... I am waiting 🥺
@stutibansal1077 Жыл бұрын
for(int i =0; i
@nitinbhatt36358 ай бұрын
it will take tc of o(n^2) which is not required in question
@akhleshdixit92863 жыл бұрын
Price bhai, iss question k first example m jo matrix di h geeks for geeks site pr voh sorted h kya? Kyuki unki matrix m , 0th row m 38 diya h or 36 1st row m. Similarly, 1st row m 43,60 diye h or 2nd row m 40. Bhai, plz bta dena 🙏
@HelloWorldbyprince3 жыл бұрын
Haan usse thora galat diya hua hai Aapne jo sikha hai wo sahi hai
@subhrajitsaha15152 жыл бұрын
Brother we can use binary search as it is rowise sorted
@HelloWorldbyprince2 жыл бұрын
try to implement your thoughts on code and let's see the magic ...btw we can use
@subhrajitsaha15152 жыл бұрын
@@HelloWorldbyprince definitely I will do and share the code
@pritamsarkar33713 жыл бұрын
bhai, thodi garbar hay,, tumhari code may , 43 ko kaise dhunde ga????? please run 43 in test case, its returning false, when {{ 3, 30, 38}, {36, 43, 60}, {40, 51, 69}} is the given matrix
@HelloWorldbyprince3 жыл бұрын
I think your matrix is not sorted, In your case, 43 comes in row 2 and after that in row3 there is 40 sorted matrix is like start writting numbers from 1st row to ...end row elements Line by line and all are in sorted But in your case ...it's not happed Your matrix is like 3,30,38,36,43,60,40 and so on Which is not sorted
@pritamsarkar33713 жыл бұрын
@@HelloWorldbyprince but the matrix is given in your description section and in geek for geek site, brother/sir
@rahulgupta-qq7dd2 жыл бұрын
Bahut acha laga
@HelloWorldbyprince2 жыл бұрын
thanks
@akashnag64592 жыл бұрын
very helpful
@HelloWorldbyprince2 жыл бұрын
Glad it helped
@SwaroopMurthy2 жыл бұрын
if it's sorted we should do binary search no?
@HelloWorldbyprince2 жыл бұрын
u can
@rishavraj6487 Жыл бұрын
isme binary search wale method se kyu ni chl rha h?
@sibasis55912 жыл бұрын
The method that you have done is wrong. The sorted manner that you have considered does not match with this question. But it helps in problem-solving technique🤗
@HelloWorldbyprince2 жыл бұрын
🤩😎
@bhupeshpattanaik71503 жыл бұрын
Why in starting KZbin shows this video is sponsored ?🤔... How does KZbin recognise that
@HelloWorldbyprince3 жыл бұрын
We have to mention that things 😊
@bhupeshpattanaik71503 жыл бұрын
@@HelloWorldbyprince ohh , but most of the KZbin doesn't mention that ..... But you did that 🔥👍
@rohitgupta22232 жыл бұрын
apka code gfg pr run hi nhi ho rha hai
@teacup1431 Жыл бұрын
it fails in the below input N = 4 , M = 4 10 20 30 40 15 25 35 45 27 29 37 48 32 33 39 50 x = 37
@masumali8356 Жыл бұрын
int i=0; int j=m-1; while(i=0) { if(matrix[i][j]==x) { return true; } else if(matrix[i][j]
@sanjeevranjan47882 жыл бұрын
Its a wrong code correct code is : class Solution: #Function to search a given number in row-column sorted matrix. def search(self,matrix, n, m, x): i = 0 j = m-1 while j>=0 and ix: j-=1 elif matrix[i][j]
@HelloWorldbyprince2 жыл бұрын
Okay Thanks 😊
@sanjeevranjan47882 жыл бұрын
@@HelloWorldbyprince Its my pleasure that you will reply me. You have taught all the topic very well. I have got confidence in graph after watching all your graph playslist. I love watching your video.
@piyushpathak73113 жыл бұрын
Sir plz upload more problems..
@HelloWorldbyprince3 жыл бұрын
Yeah, it's comming ....🙂🙂
@piyushpathak73113 жыл бұрын
@@HelloWorldbyprince thankyou so much 🙏 sir plz upload problems on daily basis Sir it will be very helpful becoz our placement is comming..
@himanshusaha63402 жыл бұрын
Same solution i also did but is wrong..
@HelloWorldbyprince2 жыл бұрын
no problem we are learning from our mistakes
@himanshusaha63402 жыл бұрын
@@HelloWorldbyprince keep it up sir, you way of teaching is tremendous 👍
@abdullahshamoon10812 жыл бұрын
Bhai question me diya h individual row and individual column sorted . Lekin jaisa sorting aap explain kr re ho vo to different h question se 😕
@abdullahshamoon10812 жыл бұрын
Also after writing the same code as yours the output is incorrect.. ps- I am writing the code in gfg