#matrixsearch search results
๐ #GFG160 โ Day 35: Searching Smartly! ๐๐ Solved the Search in a Row-wise Sorted Matrix problem today โ leveled up my matrix search skills! โ๏ธ Search in a Row-wise Sorted Matrix #MatrixSearch #BinarySearch #2DArray #GeeksforGeeks #100DaysOfCode #geekstreak2025 @geeksforgeeks
๐ Day 38 of @geeksforgeeks 160 โ Search in a Row-Column Sorted Matrix โ Solved the problem of searching in a matrix where rows and columns are sorted. Started from the top-right corner and moved smartly using comparisons. #geekstreak2025 #gfg160 #MatrixSearch #BinaryThinking
Volunteering will help u understand how to speak and connect with biz #matrixsearch @GlobalCompactCA @canimmigrant @cdnbiz
๐ #GFG160 โ Day 34: Matrix Hunt Begins! ๐๐ Solved the Search in a Row-Column Sorted Matrix problem today โ๏ธ Search in a Row-Column Sorted Matrix #MatrixSearch #BinarySearch #2DArray #GeeksforGeeks #100DaysOfCode #geekstreak2025 @geeksforgeeks
Greetings from #MatrixSearch! This weekend, #lead and #inspire @jen_keesmaat @nxtcityprize @reicnational @the7virtues
๐ Day 38 of #gfg160 ๐ฏ Task: Search in a sorted 2D matrix Input: [[3,30,38],[20,52,54],[35,60,69]], x = 62 Output: false Approach: โ Start top-right โ Move down if less, โฌ move left if more โฑ O(n + m) | ๐พ O(1) #Java #MatrixSearch #BinarySearch #Day38 #geekstreak2025
Another value tool for newcomers in Canada @Twitter @canimmigrant @SarranAlicia #newcomers #matrixsearch
๐ Day 40 of #gfg160 Solved Search in a Sorted Matrix ๐ง โ Used binary search on the virtual 1D view of the matrix โ elegant & efficient! Strictly sorted rows made it a breeze ๐ฅ Thanks @geeksforgeeks ๐ #PythonMode #MatrixSearch #geekstreak2025 #DSA #MediumLevel #CodeEveryday
Day 22 of #100DaysOfCode ๐๐ค๏ธ Found the Minimum Area to Cover All Ones! ๐๐ค LeetCode matrix, solved! ๐ข๐ฎ Unlocking matrix mysteries. #LeetCode #MatrixSearch #CodingQuest
Greetings from #MatrixSearch! This weekend, #lead and #inspire ! @theivyatverity @ManifestResults @iHeForShe @WXN
Take the guess work out of social media. Details with your skills are key @LinkedIn @canimmigrant #matrixsearch #newcomers
โจ GFG 160 โ Day 39 ๐ Problem: Search in a Row-Wise Sorted Matrix ๐ง Approach: Used binary search on each row since rows are sorted individually. Efficiently checks for the target with O(n log m) time. โฑ๏ธ TC: O(n ร log m) | SC: O(1) #geekstreak2025 #gfg160 #MatrixSearch
๐ฏ Day 22 of My DSA Journey: Binary Search in a 2D Matrix Hey Tech Fam! ๐๐ฉโ๐ป๐จโ๐ป Today I applied Binary Search in a 2D matrix by treating it like a 1D array! Time Complexity: O(log(m * n)) ๐ฅ #BinarySearch #DSAJourney #MatrixSearch #Day22DSA #ProblemSolving #EfficientCoding
๐ง Day 13: Binary Search in 2D Arrays @kunalstwt ๐นRow-Column Matrices - Search starts at the top-right corner - Time Complexity: O(m + n) ๐นSorted Matrices - Treat as a 1D array - Apply binary search - Time Complexity: O(log(m * n))๐ #BinarySearch #MatrixSearch #Java
Check out photos of #MatrixSearch at #ULISocial 2015! goo.gl/WMTP3x! @UrbanLandInst Thank you @ULIToronto !
Don't duplicate keep it real and specific. Learn and share in your search #matrixsearch @canimmigrant @immigrantsnews @CareerArc
๐ Day 38 of #gfg160 Q: Search in Row-Column Sorted Matrix โ Start from top-right: โ If mat[row][col] > x โ move left โ If < x โ move down โ If == x โ found! ๐ O(n + m) | ๐ฆ O(1) #DSA #MatrixSearch #100DaysOfCode @geeksforgeeks
๐ Day 38 of #gfg160 Solved Search in Row-Column Sorted Matrix ๐ in Python ๐ Brute-forced it today ๐ช โ nested loops FTW! Time to optimize later ๐ Thanks @geeksforgeeks ๐ #PythonMode #MatrixSearch #geekstreak2025 #DSA #EasyPeasy #CodeEveryday
Day 38 of #geekstreak2024 โ #gfg160 ๐ฏ Problem solved: Search in a Row-Column Sorted Matrix ๐ Solution Code: GitHub Link ๐ #MatrixSearch #Algorithm
โจ GFG 160 โ Day 39 ๐ Problem: Search in a Row-Wise Sorted Matrix ๐ง Approach: Used binary search on each row since rows are sorted individually. Efficiently checks for the target with O(n log m) time. โฑ๏ธ TC: O(n ร log m) | SC: O(1) #geekstreak2025 #gfg160 #MatrixSearch
โ Day 39/160 GFG Challenge Completed! ๐ Problem: Search in a Row-Column Sorted Matrix ๐ Approach: Brute-force nested loops to locate the element in O(nยฒ) โ worked flawlessly for all 1111 test cases! #GFG160 #MatrixSearch #JavaDSA #CodeEveryDay #geekstreak2025
โ Day 40 โ #GFG160DaysChallenge ๐ Binary Search in a 2D Matrix Treat the matrix as a flattened sorted array for fast search. #Python #MatrixSearch #BinarySearch #DSA #GeeksForGeeks #100DaysOfCode
๐ Day 38 of #gfg160 Q: Search in Row-Column Sorted Matrix โ Start from top-right: โ If mat[row][col] > x โ move left โ If < x โ move down โ If == x โ found! ๐ O(n + m) | ๐ฆ O(1) #DSA #MatrixSearch #100DaysOfCode @geeksforgeeks
๐ Day 38 of #gfg160 ๐ฏ Task: Search in a sorted 2D matrix Input: [[3,30,38],[20,52,54],[35,60,69]], x = 62 Output: false Approach: โ Start top-right โ Move down if less, โฌ move left if more โฑ O(n + m) | ๐พ O(1) #Java #MatrixSearch #BinarySearch #Day38 #geekstreak2025
๐ #GFG160 โ Day 35: Searching Smartly! ๐๐ Solved the Search in a Row-wise Sorted Matrix problem today โ leveled up my matrix search skills! โ๏ธ Search in a Row-wise Sorted Matrix #MatrixSearch #BinarySearch #2DArray #GeeksforGeeks #100DaysOfCode #geekstreak2025 @geeksforgeeks
๐ Day 40 of #gfg160 Solved Search in a Sorted Matrix ๐ง โ Used binary search on the virtual 1D view of the matrix โ elegant & efficient! Strictly sorted rows made it a breeze ๐ฅ Thanks @geeksforgeeks ๐ #PythonMode #MatrixSearch #geekstreak2025 #DSA #MediumLevel #CodeEveryday
Day 38 of #gfg160 #geekstreak2025 Solved Search in a Row-Column Sorted Matrix ๐ Started from the top-right corner and used the optimized staircase search to find the target efficiently in O(n + m) time. #MatrixSearch #StaircaseSearch #DSAChallenge #GFG160 #GeekStreak2025
๐ Day 39 of #gfg160 Solved Search in Row-Wise Sorted Matrix ๐ง โ Used row-wise binary search today ๐โ cleaner & faster than brute-force! Matrix checks, done right. Thanks @geeksforgeeks ๐ #PythonMode #MatrixSearch #geekstreak2025 #DSA #EasyPeasy #CodeEveryday
โ Day 38 โ #GFG160DaysChallenge ๐ Search in a Row-Column Sorted Matrix โ Start from top-right to efficiently locate the element. #Python #MatrixSearch #DSA #GeeksForGeeks #100DaysOfCode
๐ #GFG160 โ Day 34: Matrix Hunt Begins! ๐๐ Solved the Search in a Row-Column Sorted Matrix problem today โ๏ธ Search in a Row-Column Sorted Matrix #MatrixSearch #BinarySearch #2DArray #GeeksforGeeks #100DaysOfCode #geekstreak2025 @geeksforgeeks
Greetings from #MatrixSearch! This weekend, #lead and #inspire @jen_keesmaat @nxtcityprize @reicnational @the7virtues
๐ #GFG160 โ Day 35: Searching Smartly! ๐๐ Solved the Search in a Row-wise Sorted Matrix problem today โ leveled up my matrix search skills! โ๏ธ Search in a Row-wise Sorted Matrix #MatrixSearch #BinarySearch #2DArray #GeeksforGeeks #100DaysOfCode #geekstreak2025 @geeksforgeeks
๐ #GFG160 โ Day 34: Matrix Hunt Begins! ๐๐ Solved the Search in a Row-Column Sorted Matrix problem today โ๏ธ Search in a Row-Column Sorted Matrix #MatrixSearch #BinarySearch #2DArray #GeeksforGeeks #100DaysOfCode #geekstreak2025 @geeksforgeeks
๐ Day 38 of @geeksforgeeks 160 โ Search in a Row-Column Sorted Matrix โ Solved the problem of searching in a matrix where rows and columns are sorted. Started from the top-right corner and moved smartly using comparisons. #geekstreak2025 #gfg160 #MatrixSearch #BinaryThinking
๐ง Day 13: Binary Search in 2D Arrays @kunalstwt ๐นRow-Column Matrices - Search starts at the top-right corner - Time Complexity: O(m + n) ๐นSorted Matrices - Treat as a 1D array - Apply binary search - Time Complexity: O(log(m * n))๐ #BinarySearch #MatrixSearch #Java
Greetings from #MatrixSearch! This weekend, #lead and #inspire ! @theivyatverity @ManifestResults @iHeForShe @WXN
Another value tool for newcomers in Canada @Twitter @canimmigrant @SarranAlicia #newcomers #matrixsearch
๐ Day 38 of #gfg160 Q: Search in Row-Column Sorted Matrix โ Start from top-right: โ If mat[row][col] > x โ move left โ If < x โ move down โ If == x โ found! ๐ O(n + m) | ๐ฆ O(1) #DSA #MatrixSearch #100DaysOfCode @geeksforgeeks
Volunteering will help u understand how to speak and connect with biz #matrixsearch @GlobalCompactCA @canimmigrant @cdnbiz
๐ฏ Day 22 of My DSA Journey: Binary Search in a 2D Matrix Hey Tech Fam! ๐๐ฉโ๐ป๐จโ๐ป Today I applied Binary Search in a 2D matrix by treating it like a 1D array! Time Complexity: O(log(m * n)) ๐ฅ #BinarySearch #DSAJourney #MatrixSearch #Day22DSA #ProblemSolving #EfficientCoding
Take the guess work out of social media. Details with your skills are key @LinkedIn @canimmigrant #matrixsearch #newcomers
๐ Day 40 of #gfg160 Solved Search in a Sorted Matrix ๐ง โ Used binary search on the virtual 1D view of the matrix โ elegant & efficient! Strictly sorted rows made it a breeze ๐ฅ Thanks @geeksforgeeks ๐ #PythonMode #MatrixSearch #geekstreak2025 #DSA #MediumLevel #CodeEveryday
Day 22 of #100DaysOfCode ๐๐ค๏ธ Found the Minimum Area to Cover All Ones! ๐๐ค LeetCode matrix, solved! ๐ข๐ฎ Unlocking matrix mysteries. #LeetCode #MatrixSearch #CodingQuest
Day 38 of #geekstreak2024 โ #gfg160 ๐ฏ Problem solved: Search in a Row-Column Sorted Matrix ๐ Solution Code: GitHub Link ๐ #MatrixSearch #Algorithm
Something went wrong.
Something went wrong.
United States Trends
- 1. Nancy Pelosi 82K posts
- 2. Marshawn Kneeland 50.5K posts
- 3. Ozempic 9,054 posts
- 4. Michael Jackson 76K posts
- 5. Craig Stammen 2,087 posts
- 6. Gordon Findlay 4,058 posts
- 7. Sean Dunn 2,201 posts
- 8. Jaidyn 2,242 posts
- 9. Oval Office 28.8K posts
- 10. GLP-1 6,071 posts
- 11. #MichaelMovie 72.6K posts
- 12. Pujols N/A
- 13. Novo Nordisk 8,983 posts
- 14. Abraham Accords 6,225 posts
- 15. Kazakhstan 8,076 posts
- 16. Kyrou N/A
- 17. NOT GUILTY 16.8K posts
- 18. Sandwich Guy 6,496 posts
- 19. Unplanned 9,577 posts
- 20. Baxcalibur 6,924 posts