#binarysearch search results
⚡ LeetCode Daily: Maximize Min Powered City ✅ Binary search on answer! Check if min power achievable, greedily place stations at rightmost position. ⚡ O(n log(sum+k)) with BS 🎯 Greedy validation 💡 Search value, not position #LeetCode #CPlusPlus #BinarySearch #100DaysOfCode
🧠 #Day19 of my #180DaysHardDSAChallenge lecture-26 Today was pure Binary Search magic 🔍 Solved Aggressive Cows 🐄 & Koko Eating Bananas 🍌 Binary Search ≠ just an algorithm It’s a way of thinking ⚡ #BinarySearch #DSA #Cpp #LogicBuilding #180DaysChallenge @rohit_negi9
Day 39: Find K Closest Elements 🎯 Approach: Binary Search ⚙️ Find the boundary → Shrink the window → Return the closest ones Efficient and elegant in O(log(n–k)) ⌛ GitHub: l1nq.com/VURah #LeetCode #CPP #BinarySearch #CodingLife #ProblemSolving #Developer
Day 21 of my DSA in C++ Topic Covered: Book Allocation Problem (Binary Search – Part 5) 1️⃣ Problem Understanding 2️⃣ Approach Explanation 3️⃣ Pseudocode 4️⃣ Check Mid Valid or Not 5️⃣ Code Implementation 6️⃣ Homework Practice #DSA #Cplusplus #BinarySearch #CodingJourney
Day 55 of #DSA grind! Yesterday: solved a problem with my first approach (edge-case issues 😅) Today: fixed it using the robust l <= r binary search ✅ Big thanks to @akshaymarch7 🙏 #100DaysOfCode #BinarySearch #UntilFindJob #Day55
Crushed 3 tough binary search problems today from CoderArmy's YouTube channel! Big thanks to DSA GOD Rohit Negi bhaiya for the awesome lecture 🙌 Also nailed 1 homework question. Feeling on top of the world! 💻 #CodingJourney #DSA #BinarySearch #CoderArmy
Day 15 of #TUFWinterArc 🔄 📚 Revised: Aggressive Cows (Binary Search refresher) ⏸️ Light day — but the streak stays alive @takeUforward_ #DSA #BinarySearch
day 23, started Binary Search algorithm, also worked on AWS #100DaysOfCode #DSA #BinarySearch #LeetCode
✅52/100 Just cracked #LeetCode ques. 69 (Sqrt(x)) 🚀 Tried the linear approach, but Binary Search is the real magic. The time difference was unreal! Don't underestimate the power of halving your search space. Always go O(log n). #BinarySearch #Algorithms #DSA #Javascript
Just crushed some binary search problems in a 2D array thanks to the GOAT Rohit Negi bhaiya's awesome tutorials on CoderArmy's YouTube channel! 🐐💻 Feeling on top of my coding game! #Coding #BinarySearch #CoderArmy #Consistency
#Day98 Solved: Valid Perfect Square🔢 📌Task: Given an integer check if it’s a perfect square ⚡Approach: Binary Search Search range→[1, num/2] Mid² == num→✅Perfect Square Avoid overflow using long 🕒TC: O(log n) 📦SC: O(1) #LeetCode #BinarySearch #Java #100DaysOfCode #DSA
Day 48 of DSA🚀 Solved LeetCode #852: Peak Index in a Mountain Array using Binary Search 🏔️ 🔑 Approach: Use two pointers l & r. If arr[m+1] > arr[m] → move right. Else → move left. Converge at peak index. ⏱ O(log n) | 💾 O(1) #LeetCode #DSA #BinarySearch #CodingJourney
Day 57 #100DaysOfCode Solved Aggressive Cows problem from the DSA series (Binary Search), completed some assignments, and also revised Python. Keeping the momentum strong and consistent! #DSA #BinarySearch #AggressiveCows #Python #CodingJourney #LearnInPublic
Day 47 - DSA Solved LeetCode #34: Find First & Last Position of Element in Sorted Array ✨ Key Idea: Use binary search twice 1️⃣ Find left boundary (first index) 2️⃣ Find right boundary (last index) ⏱ O(log n) | 📦 O(1) #100DaysOfCode #leetcode #BinarySearch #DSA #JavaScript
Day 7/100 of #100DaysOfCode challenge is complete! Focused on revision and mastering tough binary search problems today. The Book Allocation problem was a great challenge but managed to do it. Step by step, we get better. #DSA #BinarySearch #rohitnegi #gfg #LearnInPublic
⚡ LeetCode Daily: Maximize Min Powered City ✅ Binary search on answer! Check if min power achievable, greedily place stations at rightmost position. ⚡ O(n log(sum+k)) with BS 🎯 Greedy validation 💡 Search value, not position #LeetCode #CPlusPlus #BinarySearch #100DaysOfCode
Day 8 of the #StriverSheet done! ✅ Today, we cracked the code on Binary Search on Answers. Finding the minimum/maximum optimal value is no longer a mystery. Onward to Day 9! 🚀 #BinarySearch #DSA #CodingChallenge #100DaysOfCode
Day 21 of my DSA in C++ Topic Covered: Book Allocation Problem (Binary Search – Part 5) 1️⃣ Problem Understanding 2️⃣ Approach Explanation 3️⃣ Pseudocode 4️⃣ Check Mid Valid or Not 5️⃣ Code Implementation 6️⃣ Homework Practice #DSA #Cplusplus #BinarySearch #CodingJourney
Day 11 of #100DaysOfCode Today I try to solve 1 problem on #BinarySearch -minimise maximum distance to Gas station but did not understand the code properly #DSA #CodingLife #BuildInPublic #striver
Mastering Binary Search in Data Structures & Algorithms | #DataStructures #Algorithms #BinarySearch #Programming #DSA #ProblemSolving #LearningToCode
🔥 Day 24 of #TUFWinterArc complete! Crushed Step 4 – Lecture 2 (5–7 BS on 1D Arrays) today. Feeling more confident with binary search variations. Though Brute of q7 was a bit confusing but got it later, other 2 were simpler to understand. #DSA @takeUforward_ #BinarySearch
@geeksforgeeks I love this number. !palindromely & !symmetrically beautiful number. #aggressiveCows #binarySearch #gfg #code #dsa
Day 20 of my DSA in C++ 📘 Topic: Binary Search part 4 - Single Element in a Sorted Array (LeetCode 540) 1️⃣ Approach explanation 2️⃣ Pseudocode 3️⃣ Handling edge cases 4️⃣ Code implementation 5️⃣ Dry Run #DSA #Cplusplus #BinarySearch #LeetCode #CodingJourney
Day 55 of #DSA grind! Yesterday: solved a problem with my first approach (edge-case issues 😅) Today: fixed it using the robust l <= r binary search ✅ Big thanks to @akshaymarch7 🙏 #100DaysOfCode #BinarySearch #UntilFindJob #Day55
Day 19 of my DSA in C++ 📘 Topic: Peak Index in Mountain Array (LeetCode 852) 1️⃣ Approach explanation 2️⃣ Pseudocode 3️⃣ Handling edge cases 4️⃣ Dry run 5️⃣ Code implementation #DSA #Cplusplus #BinarySearch #LeetCode #CodingJourney
Day 54 DSA Grind: Found 1st & last position of a target using double #BinarySearch Left bias first occurrence Right bias last occurrence All in O(log n) Binary Search isn’t just one trick — it’s a toolkit! #100DaysOfCode #JavaScript #DSA
Day 21 of #TufWinterArc Completed 3 new Binary Search problems: - Search in Rotated Sorted Array II - Find Minimum in Rotated Sorted Array - Find How Many Times an Array Has Been Rotated @takeUforward_ #DSA #BinarySearch #Foundation
Day 15 of #TUFWinterArc 🔄 📚 Revised: Aggressive Cows (Binary Search refresher) ⏸️ Light day — but the streak stays alive @takeUforward_ #DSA #BinarySearch
Binary search needs a sorted array. Iterative: loop with l and r. Recursive: reduce problem by half each call. Both O(log n) time; recursive uses stack (O(log n) space). #Algorithms #BinarySearch
🧠 #Day19 of my #180DaysHardDSAChallenge lecture-26 Today was pure Binary Search magic 🔍 Solved Aggressive Cows 🐄 & Koko Eating Bananas 🍌 Binary Search ≠ just an algorithm It’s a way of thinking ⚡ #BinarySearch #DSA #Cpp #LogicBuilding #180DaysChallenge @rohit_negi9
⚡ LeetCode Daily: Maximize Min Powered City ✅ Binary search on answer! Check if min power achievable, greedily place stations at rightmost position. ⚡ O(n log(sum+k)) with BS 🎯 Greedy validation 💡 Search value, not position #LeetCode #CPlusPlus #BinarySearch #100DaysOfCode
Day 56/100 ✅ Solved 3 Binary Search on Answer problems (1 Hard, 2 Medium) 🌐 Completed my Portfolio Website 📘 Studied Maths On the grind, one step closer each day! 💪🚀 #DSA #LeetCode #BinarySearch #WebDev #Portfolio #Maths #100DaysOfCode #CodingJourney
day 23, started Binary Search algorithm, also worked on AWS #100DaysOfCode #DSA #BinarySearch #LeetCode
Day 48 of DSA🚀 Solved LeetCode #852: Peak Index in a Mountain Array using Binary Search 🏔️ 🔑 Approach: Use two pointers l & r. If arr[m+1] > arr[m] → move right. Else → move left. Converge at peak index. ⏱ O(log n) | 💾 O(1) #LeetCode #DSA #BinarySearch #CodingJourney
#Day98 Solved: Valid Perfect Square🔢 📌Task: Given an integer check if it’s a perfect square ⚡Approach: Binary Search Search range→[1, num/2] Mid² == num→✅Perfect Square Avoid overflow using long 🕒TC: O(log n) 📦SC: O(1) #LeetCode #BinarySearch #Java #100DaysOfCode #DSA
Day 47 - DSA Solved LeetCode #34: Find First & Last Position of Element in Sorted Array ✨ Key Idea: Use binary search twice 1️⃣ Find left boundary (first index) 2️⃣ Find right boundary (last index) ⏱ O(log n) | 📦 O(1) #100DaysOfCode #leetcode #BinarySearch #DSA #JavaScript
Day 7/100 of #100DaysOfCode challenge is complete! Focused on revision and mastering tough binary search problems today. The Book Allocation problem was a great challenge but managed to do it. Step by step, we get better. #DSA #BinarySearch #rohitnegi #gfg #LearnInPublic
Day 57 #100DaysOfCode Solved Aggressive Cows problem from the DSA series (Binary Search), completed some assignments, and also revised Python. Keeping the momentum strong and consistent! #DSA #BinarySearch #AggressiveCows #Python #CodingJourney #LearnInPublic
🚀 Day 27 | #DSA Journey ✨ Learned Binary Search 🔍 ✅ Works on sorted arrays ✅ Halves search space ➗ ✅ O(log n) time, O(1) space 💡 Divide & Conquer >> Linear Search. Solved a LeetCode Q 🙌 #100DaysOfCode #BinarySearch
Crushed 3 tough binary search problems today from CoderArmy's YouTube channel! Big thanks to DSA GOD Rohit Negi bhaiya for the awesome lecture 🙌 Also nailed 1 homework question. Feeling on top of the world! 💻 #CodingJourney #DSA #BinarySearch #CoderArmy
🖌️ Painter’s Partition Problem (similar to Book Allocation) solved today! This problem sharpened my skills in Binary Search on Answer + Greedy Checking. Feeling more confident with these classic allocation problems 💡 #DSA #BinarySearch #CodingJourney #100DaysOfCode #day44
✅52/100 Just cracked #LeetCode ques. 69 (Sqrt(x)) 🚀 Tried the linear approach, but Binary Search is the real magic. The time difference was unreal! Don't underestimate the power of halving your search space. Always go O(log n). #BinarySearch #Algorithms #DSA #Javascript
Day 54 DSA Grind: Found 1st & last position of a target using double #BinarySearch Left bias first occurrence Right bias last occurrence All in O(log n) Binary Search isn’t just one trick — it’s a toolkit! #100DaysOfCode #JavaScript #DSA
Day 15 of #TUFWinterArc 🔄 📚 Revised: Aggressive Cows (Binary Search refresher) ⏸️ Light day — but the streak stays alive @takeUforward_ #DSA #BinarySearch
Just crushed some binary search problems in a 2D array thanks to the GOAT Rohit Negi bhaiya's awesome tutorials on CoderArmy's YouTube channel! 🐐💻 Feeling on top of my coding game! #Coding #BinarySearch #CoderArmy #Consistency
Day 40✅ | #gfg160 Challenge @geeksforgeeks Solved → 🔍 Search in a Sorted Matrix 📌 T: O(log(N×M)) | S: O(1) Used virtual binary search on a 2D matrix by treating it as a flat 1D array. → Alt. #DSA #BinarySearch #MatrixSearch #gfg160 #geekstreak2025 #LearnInPublic
Something went wrong.
Something went wrong.
United States Trends
- 1. Grammy 403K posts
- 2. #FliffCashFriday 2,071 posts
- 3. Dizzy 10.6K posts
- 4. James Watson 8,859 posts
- 5. #NXXT 1,182 posts
- 6. Clipse 23.4K posts
- 7. Kendrick 66.2K posts
- 8. #GOPHealthCareShutdown 10.3K posts
- 9. Darryl Strawberry 1,408 posts
- 10. Thune 78.9K posts
- 11. Chase 88.5K posts
- 12. Orban 50.7K posts
- 13. #FursuitFriday 12.5K posts
- 14. Klay 5,658 posts
- 15. MANELYK EN COMPLICES 12K posts
- 16. Capitol Police 13.3K posts
- 17. Laporta 14.2K posts
- 18. Bijan 3,177 posts
- 19. Carmen 47.9K posts
- 20. END THE FILIBUSTER 97.3K posts