#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
๐ #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 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
๐ 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
Volunteering will help u understand how to speak and connect with biz #matrixsearch @GlobalCompactCA @canimmigrant @cdnbiz
Greetings from #MatrixSearch! This weekend, #lead and #inspire @jen_keesmaat @nxtcityprize @reicnational @the7virtues
โจ 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 38 of #geekstreak2024 โ #gfg160 ๐ฏ Problem solved: Search in a Row-Column Sorted Matrix ๐ Solution Code: GitHub Link ๐ #MatrixSearch #Algorithm
๐ 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 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 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 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 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
๐ Day 39/160 of GFG DSA Challenge Problem: Search in a Row-wise & Column-wise Sorted Matrix ๐ง Approach: Binary search row-by-row using helper ispresent ๐ Points Earned: 2 / 2 | ๐ Total Score: 265 #GFG160 #BinarySearch #MatrixSearch #DSA #ProblemSolving #geeksforgeeks
๐ 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
โจ 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
๐ #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
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
Volunteering will help u understand how to speak and connect with biz #matrixsearch @GlobalCompactCA @canimmigrant @cdnbiz
๐ 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
๐ฏ 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 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 #geekstreak2024 โ #gfg160 ๐ฏ Problem solved: Search in a Row-Column Sorted Matrix ๐ Solution Code: GitHub Link ๐ #MatrixSearch #Algorithm
๐ง 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
โจ 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 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
Something went wrong.
Something went wrong.
United States Trends
- 1. Broncos 57.8K posts
- 2. Bo Nix 16.1K posts
- 3. Geno 16.6K posts
- 4. Sean Payton 4,177 posts
- 5. Kenny Pickett 1,405 posts
- 6. #TNFonPrime 3,756 posts
- 7. Chip Kelly 1,747 posts
- 8. Bradley Beal 2,729 posts
- 9. Jalen Green 5,553 posts
- 10. Pete Carroll 1,526 posts
- 11. Jeanty 6,180 posts
- 12. Troy Franklin 2,338 posts
- 13. Thursday Night Football 6,097 posts
- 14. #criticalrolespoilers 3,580 posts
- 15. Brock Bowers 4,679 posts
- 16. Daniel Carlson N/A
- 17. Ty Lue 1,210 posts
- 18. #LVvsDEN 4,041 posts
- 19. #911onABC 25.7K posts
- 20. Al Michaels N/A