Search in a row column sorted Matrix | @GeeksforGeeks | Competitive Programming for Beginners

  Рет қаралды 9,552

Hello World

Hello World

Күн бұрын

Пікірлер
@rahulkarmakar8067
@rahulkarmakar8067 Жыл бұрын
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
@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
@HelloWorldbyprince Жыл бұрын
good job
@bhargavsolanki6386
@bhargavsolanki6386 3 жыл бұрын
Awesome bro, keep it up. Pls.. Upload interview related program questions.
@HelloWorldbyprince
@HelloWorldbyprince 3 жыл бұрын
Thank you 💗
@NOTHING88857
@NOTHING88857 Жыл бұрын
🤩i solved it without saw solution bhaiya feed good
@HelloWorldbyprince
@HelloWorldbyprince Жыл бұрын
good work buddy
@muntahahasan2857
@muntahahasan2857 3 жыл бұрын
Thanks 😊
@masumali8356
@masumali8356 Жыл бұрын
lovely work...thank you masum.
@HelloWorldbyprince
@HelloWorldbyprince Жыл бұрын
Most welcome 😊
@ashb8552
@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
@HelloWorldbyprince Жыл бұрын
Waoooo great
@ashb8552
@ashb8552 Жыл бұрын
@@HelloWorldbyprince thx sir Means alot u replied😅
@kanharajput5443
@kanharajput5443 3 жыл бұрын
Median of a row wise sorted matrix Please make a video of this problem.
@HelloWorldbyprince
@HelloWorldbyprince 3 жыл бұрын
Sure 😃😃
@kanharajput5443
@kanharajput5443 3 жыл бұрын
Thanks... I am waiting 🥺
@stutibansal1077
@stutibansal1077 Жыл бұрын
for(int i =0; i
@nitinbhatt3635
@nitinbhatt3635 8 ай бұрын
it will take tc of o(n^2) which is not required in question
@akhleshdixit9286
@akhleshdixit9286 3 жыл бұрын
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 🙏
@HelloWorldbyprince
@HelloWorldbyprince 3 жыл бұрын
Haan usse thora galat diya hua hai Aapne jo sikha hai wo sahi hai
@subhrajitsaha1515
@subhrajitsaha1515 2 жыл бұрын
Brother we can use binary search as it is rowise sorted
@HelloWorldbyprince
@HelloWorldbyprince 2 жыл бұрын
try to implement your thoughts on code and let's see the magic ...btw we can use
@subhrajitsaha1515
@subhrajitsaha1515 2 жыл бұрын
@@HelloWorldbyprince definitely I will do and share the code
@pritamsarkar3371
@pritamsarkar3371 3 жыл бұрын
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
@HelloWorldbyprince
@HelloWorldbyprince 3 жыл бұрын
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
@pritamsarkar3371
@pritamsarkar3371 3 жыл бұрын
@@HelloWorldbyprince but the matrix is given in your description section and in geek for geek site, brother/sir
@rahulgupta-qq7dd
@rahulgupta-qq7dd 2 жыл бұрын
Bahut acha laga
@HelloWorldbyprince
@HelloWorldbyprince 2 жыл бұрын
thanks
@akashnag6459
@akashnag6459 2 жыл бұрын
very helpful
@HelloWorldbyprince
@HelloWorldbyprince 2 жыл бұрын
Glad it helped
@SwaroopMurthy
@SwaroopMurthy 2 жыл бұрын
if it's sorted we should do binary search no?
@HelloWorldbyprince
@HelloWorldbyprince 2 жыл бұрын
u can
@rishavraj6487
@rishavraj6487 Жыл бұрын
isme binary search wale method se kyu ni chl rha h?
@sibasis5591
@sibasis5591 2 жыл бұрын
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🤗
@HelloWorldbyprince
@HelloWorldbyprince 2 жыл бұрын
🤩😎
@bhupeshpattanaik7150
@bhupeshpattanaik7150 3 жыл бұрын
Why in starting KZbin shows this video is sponsored ?🤔... How does KZbin recognise that
@HelloWorldbyprince
@HelloWorldbyprince 3 жыл бұрын
We have to mention that things 😊
@bhupeshpattanaik7150
@bhupeshpattanaik7150 3 жыл бұрын
@@HelloWorldbyprince ohh , but most of the KZbin doesn't mention that ..... But you did that 🔥👍
@rohitgupta2223
@rohitgupta2223 2 жыл бұрын
apka code gfg pr run hi nhi ho rha hai
@teacup1431
@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
@masumali8356 Жыл бұрын
int i=0; int j=m-1; while(i=0) { if(matrix[i][j]==x) { return true; } else if(matrix[i][j]
@sanjeevranjan4788
@sanjeevranjan4788 2 жыл бұрын
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]
@HelloWorldbyprince
@HelloWorldbyprince 2 жыл бұрын
Okay Thanks 😊
@sanjeevranjan4788
@sanjeevranjan4788 2 жыл бұрын
@@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.
@piyushpathak7311
@piyushpathak7311 3 жыл бұрын
Sir plz upload more problems..
@HelloWorldbyprince
@HelloWorldbyprince 3 жыл бұрын
Yeah, it's comming ....🙂🙂
@piyushpathak7311
@piyushpathak7311 3 жыл бұрын
@@HelloWorldbyprince thankyou so much 🙏 sir plz upload problems on daily basis Sir it will be very helpful becoz our placement is comming..
@himanshusaha6340
@himanshusaha6340 2 жыл бұрын
Same solution i also did but is wrong..
@HelloWorldbyprince
@HelloWorldbyprince 2 жыл бұрын
no problem we are learning from our mistakes
@himanshusaha6340
@himanshusaha6340 2 жыл бұрын
@@HelloWorldbyprince keep it up sir, you way of teaching is tremendous 👍
@abdullahshamoon1081
@abdullahshamoon1081 2 жыл бұрын
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 😕
@abdullahshamoon1081
@abdullahshamoon1081 2 жыл бұрын
Also after writing the same code as yours the output is incorrect.. ps- I am writing the code in gfg
@bhartigupta3101
@bhartigupta3101 10 ай бұрын
Your logic is wrong
Search A 2D Sorted Matrix - Fundamentals of Search Space Reduction
29:31
Back To Back SWE
Рет қаралды 51 М.
Леон киллер и Оля Полякова 😹
00:42
Канал Смеха
Рет қаралды 4,7 МЛН
“Don’t stop the chances.”
00:44
ISSEI / いっせい
Рет қаралды 62 МЛН
How I Mastered Data Structures and Algorithms in 8 Weeks
15:46
Aman Manazir
Рет қаралды 154 М.
BS-27. Median in a Row Wise Sorted Matrix
23:13
take U forward
Рет қаралды 113 М.
BS-25. Search in a 2D Matrix - II  |  Binary Search on 2D
15:29
take U forward
Рет қаралды 89 М.
How to STUDY so FAST it feels like CHEATING
8:03
The Angry Explainer
Рет қаралды 2,5 МЛН
BS-24. Search in a 2D Matrix - I | Binary Search of 2D
15:42
take U forward
Рет қаралды 127 М.
The Black Box Method: How to Learn Hard Concepts Quickly
14:09
Colin Galen
Рет қаралды 1,1 МЛН
7 Outside The Box Puzzles
12:16
MindYourDecisions
Рет қаралды 86 М.
Making an Algorithm Faster
30:08
NeetCodeIO
Рет қаралды 193 М.
Леон киллер и Оля Полякова 😹
00:42
Канал Смеха
Рет қаралды 4,7 МЛН