Search results for #binarysearch
📚 Day 42 - Week 6 Day 7 of #SkillUpWithGFG! ⚖️ Topic: Maximize Median After K Operations ✅ Progress: 42/100 days completed! 📘 Course Link: geeksforgeeks.org/batch/skill-up… Tagging @geeksforgeeks #NationSkillup #SkillUpWithGFG #DSA #BinarySearch #Greedy #CodingChallenge #100DaysOfCode
Completed Binary Search module today! @striver_79 @takeUforward_ 🔍 Learned different patterns: General BS BS on Answers Max in Min problems 2D Arrays search Feeling more confident with problem-solving now 🚀 #DSA #100DaysOfCode #BinarySearch
📚 Day 41 - Week 6 Day 6 of #SkillUpWithGFG! 🌸 Topic: Minimum Days to Make M Bouquets ✅ Progress: 41/100 days completed! 📘 Course Link: geeksforgeeks.org/batch/skill-up… Tagging @geeksforgeeks #NationSkillup #SkillUpWithGFG #DSA #BinarySearch #Greedy #CodingChallenge #100DaysOfCode
🗓️ Day 34 of #100DaysOfDSA Solved LeetCode 540 – Single Element in a Sorted Array. Tried 2 approaches: 1️⃣ Linear Search - in O(n) time 2️⃣ Binary Search - in O(log₂n) time #DSA #LeetCode #Striver #BinarySearch
📚 Day 40 - Week 6 Day 5 of #SkillUpWithGFG! 📖 Topic: Allocate Minimum Pages ✅ Progress: 40/100 days completed! 📘 Course Link: geeksforgeeks.org/batch/skill-up… Tagging @geeksforgeeks #NationSkillup #SkillUpWithGFG #DSA #BinarySearch #Greedy #CodingChallenge #100DaysOfCode
🚀 Solved “Minimum Days to Make M Bouquets” today Key insights: ✅ Use binary search on answer space ✅ Greedy feasibility check for making bouquets ✅ Efficient solution: O(n log(maxDay)) #100DaysOfCode #DSA #ProblemSolving #Python #BinarySearch #geeksforgeeks #fresher #JobSeek
Day 58: Matrix + Strings ⚡ ✅ Matrix Median Brute: Flatten + sort → O(n·m log(n·m)) Optimal: Binary search ✅ Remove Outermost Parenthesis ->Use counter.(O(n)) #Day58 #DSA #BinarySearch #Strings #100DaysOfCode #LearningJourney
Day 32/100 – Matrix Search Grind 🧩 Solved two interesting 2D problems today: • Search in a 2D Matrix II • Matrix Median Both highlight how it can tame grids from row/col pruning to using order statistics.🚀 #100DaysOfCode #DSA #BuildInPublic #ProblemSolving #BinarySearch
Day 32/100 – Matrix Search Grind 🧩 Solved two interesting 2D problems today: • Search in a 2D Matrix II • Matrix Median Both highlight how it can tame grids from row/col pruning to using order statistics.🚀 #100DaysOfCode #DSA #BuildInPublic #ProblemSolving #BinarySearch
Binary search: The algorithmic equivalent of ninja stealth. 🥷 Partition arrays like slicing sushi so the left is always smaller than the right—when it's balanced, you've found the median. Was binary search your aha-moment? Read more: iam.slys.dev/p/crack-google… #BinarySearch…
🚀 Solved LeetCode 74: Search a 2D Matrix The problem is about efficiently finding a target value in a 2D matrix where each row is sorted I applied binary search to achieve an optimized solution in O(log(m * n)) time. #LeetCode #ProblemSolving #Coding #DSA #BinarySearch
If nums[mid] < nums[mid+1] → peak is on the right Else → peak is on the left or mid Keep shrinking the search space until l == r. That’s your peak index 🔥 Binary search isn’t just for sorted arrays 😉 #LeetCode #BinarySearch #100DaysOfCode
Day 57: Peak in Matrix ⛰️ ✅ Find Peak in 2D Matrix 🌠 Brute: scan all cells, check neighbors → O(n·m) ✨ Optimal: binary search on columns (or rows), move toward larger neighbour → O(n·log m) #Day57 #DSA #BinarySearch #Matrices #100DaysOfCode #LearningJourney
🗓️ Day 32 of #100DaysOfDSA Continued with Binary Search & solved : 1️⃣ LeetCode 33 – Search in Rotated Sorted Array 2️⃣ LeetCode 81 – Search in Rotated Sorted Array II Both uses BS in O(log₂n) time , but #81 can degrade to O(n/2) time due to duplicates. #DSA #BinarySearch
Day 37/100 of #100DaysOfCode! 🚀 Tackled LeetCode's "Search a 2D Matrix". 1️⃣ Binary search to find the correct row. 2️⃣ Binary search within that row to find the element. Problem Link: leetcode.com/problems/searc… #CodingChallenge #Algorithms #BinarySearch #LeetCode #TechDeals
Day 31/100 – 2D Binary Search vibes 🗂️ Did medium-hard problems like: • Find Peak Element II • Search in a 2D Matrix Binary search scales beautifully into grids, more dimensions, same elegant divide & conquer🚀 #100DaysOfCode #DSA #BuildInPublic #ProblemSolving #BinarySearch
Day 31/100 – 2D Binary Search vibes 🗂️ Did medium-hard problems like: • Find Peak Element II • Search in a 2D Matrix Binary search scales beautifully into grids, more dimensions, same elegant divide & conquer🚀 #100DaysOfCode #DSA #BuildInPublic #ProblemSolving #BinarySearch
Day 56: Matrix Search 🔎 Search in a row & col-wise sorted matrix Brute → Linear scan → O(n*m) Better → Binary search in each row → O(n*log m) Optimal → Start top-right & eliminate row/col → O(n+m) 🚀 #Day56 #DSA #BinarySearch #100DaysOfCode
📌 Day 2 of #100DaysOfCP Practiced Binary Search 🔎 ✔️ Solved: 1️⃣ LeetCode 1011 – Capacity to Ship Packages Within D Days (on Answer) 💡 Takeaways: ✅Search space = min → max capacity ✅Feasibility checked via greedy simulation ✅Progress > perfection #CP #BinarySearch #Coding
📚 Day 37 - Week 6 Day 2 of #SkillUpWithGFG! 🔍 Topic: Search in Rotated Sorted Array 2D ✅ Progress: 37/160 days completed! 📘 Course Link: geeksforgeeks.org/batch/skill-up… Tagging @geeksforgeeks #NationSkillup #SkillUpWithGFG #DSA #BinarySearch #Arrays #CodingChallenge #100DaysOfCode
Day 10/100 – #100DaysOfCode 🚀 - Revised binary search concepts , solve problems #Striver - Built up landing & result pages for the BG remover feature - integrated backend with BG remover Coding forward, one feature at a time! 💻 #DSA #Striver #BinarySearch #WebDevelopment

binarysearch @binarysearch11
38 Followers 1K Following
_binarysearch_ @EgreltiOtu_
27 Followers 234 Following İnsan, ne eksik ne fazla... Ben seçmedim; din, dil, ırk, vatan, cinsiyet, renk, ana, baba, ... Onlar da beni seçmedi... Dinsiz, imansız, ahlaksız, tabusuz...
BinarySearch @SearchBinary
0 Followers 0 Following
BinarySearch @binary_search_
0 Followers 10 Following