#arrays search results
✅ Day 111 of #150DaysOfDSA 📍 LC 1207: Unique Number of Occurrences Solved using frequency counting + boolean tracking to ensure every element’s occurrence count is distinct. ⚡ 1 ms (Beats 99.91%) | 💾 42.38 MB #HashMap #Arrays #Logic #Java #LeetCode #Coding #100DaysOfCode 🚀
✅ Day 100 of #100DaysOfDSA 📍 LC 3090: Earliest Possible Day of Full Bloom • Iterate through tasks array 🔁 • For each task, calculate total time = plantTime + growTime 🌱 • Track the minimum total time using Math.min() 🎯 ⏱ O(n) | 🗂 O(1) #Arrays #Greedy #Java #LeetCode
✅ Day 122 of #150DaysOfDSA 📍 LC 2574: Left and Right Sum Differences ⚖️ Calculated prefix (left) and suffix (right) sums for each index, then took their absolute difference to build the result array. Efficient O(n) time | O(n) space ✅ (Beats 98% 🚀) #Arrays #PrefixSum #DSA
Day 26/100 of #100DaysOfCode Today I solved two leetcode problems • remove one element to make array strictly increasing • rotate image #DSA #Arrays #Leetcode #rohitnegi #Consistency
Day 16/100 of #100DaysOfCode Wasn't feeling my best today, but consistency is key. Kept it light and managed to learn about 2-D arrays and solved the "first and last occurrence of an element" problem. A little progress is better than none! #DSA #Arrays #rohitnegi #Coderarmy
✅ Day 97 of #100DaysOfDSA 📍 LC 238: Product of Array Except Self • Build prefix & suffix product arrays • Multiply prefix[i] ✖ suffix[i] for result • Avoid using division ❌ ⏱ Time: O(n) | 🗂 Space: O(n) #Arrays #Java #100DaysOfCode 🚀
Week 1 Complete – My DSA Journey 🚀 Finished learning Arrays: Linear Search, Binary Search, Prefix Array, Kadane’s Algorithm, Trapping Rainwater, Buy & Sell Stock & more. Excited to step into Week 2 and keep sharpening my problem-solving skills! 💻✨ #Week1 #DSA #Arrays #Coding
Day 24/100 of #100DaysOfCode Today I solved three leetcode problems • check if the array is sorted and rotated • move zeros to end • intersection of two arrays #DSA #Arrays #Leetcode
✅ Day 117 of #150DaysOfDSA 📍 LC 3162: Sum of Elements With Frequency Divisible by K Counted frequencies of each element, then summed those whose counts are divisible by k. Simple frequency-mapping logic → clean O(n) implementation. #Arrays #HashMap #Implementation #BruteForce
✅ Day 92 of #100DaysOfDSA 📍 LC 1304: Find N Unique Integers Sum up to Zero • Generated first integers sequentially • Calculated their running sum • Added the last number as -sum to balance the total to zero Time: O(n), Space: O(n) #Arrays #Java #100DaysOfCode 🚀
Day 18/100 of #100DaysOfCode Today i solve two leetcode problem First one maximum water trapped and second one is sort colors #DSA #Arrays #
Day 23 of #100DaysOfCode. Today was a lesson in perseverance. Flew close to a solution for "Rearrange Array by Sign," but "Next Permutation" really made me think. It's humbling when you don't even know where to begin, but that's part of the journey. #DSA #Arrays #leetcode
Day 28/100 of #100DaysOfCode Today i solved three problems on leetcode •Smallest missing integer greater than sequential prefix sum •Longest alternating subarray •Determine the winner of a bowling game Real learning comes from problem solving #DSA #Arrays #Leetcode
🚀Day 7 of DSA Journey: Solved Backtracking and DP Question #DSA #CodingJourney #Arrays #100DaysOfCode 1.Unique Paths (Rat in Maze ) 2.Unique Paths II (Rat in Maze with obstructions )
Day 5 / 90: Sem exams are finally here 📝 Spent the day preparing for them and also solved a few Array questions on the side. Trying to balance both — one step at a time! #90DaysOfMastery #Java #Arrays #StudentLife #Consistency
Prepping for my sem exams lately 🎯 Also managed to solve 2 questions in Arrays today — slowly building momentum again. #90DaysOfMastery #Java #Arrays #StudentLife #Consistency
20. JavaScript Arrays Complete Guide! 📚 📍Topics: ✅ Array Creation & Access ✅ Basic Methods (push, pop, shift, unshift) ✅ Iteration Methods (for, for..of) GitHub: github.com/IamPawan777/Fu… #JavaScript #Arrays #WebDevelopment #Coding
Data neatly lined, Indexes hold secrets tight, Arrays form our code. #Haiku #Arrays #CodePoetry #DevHaiku #CodingLife #TechHaiku #CodeArt #DeveloperWisdom #CodingPoetry #ProgrammersLife #HaikuOfCode
Working with arrays and tuples Arrays with specific types and tuples for fixed-length arrays #TypeScript #Arrays #Tuples #DataStructures #JavaScript #WebDevelopment #Programming #TypeSafety #Collections #CleanCode
Day 16/100 of #100DaysOfCode Wasn't feeling my best today, but consistency is key. Kept it light and managed to learn about 2-D arrays and solved the "first and last occurrence of an element" problem. A little progress is better than none! #DSA #Arrays #rohitnegi #Coderarmy
Week 1 Complete – My DSA Journey 🚀 Finished learning Arrays: Linear Search, Binary Search, Prefix Array, Kadane’s Algorithm, Trapping Rainwater, Buy & Sell Stock & more. Excited to step into Week 2 and keep sharpening my problem-solving skills! 💻✨ #Week1 #DSA #Arrays #Coding
Day 26/100 of #100DaysOfCode Today I solved two leetcode problems • remove one element to make array strictly increasing • rotate image #DSA #Arrays #Leetcode #rohitnegi #Consistency
Day 18/100 of #100DaysOfCode Today i solve two leetcode problem First one maximum water trapped and second one is sort colors #DSA #Arrays #
Day 24/100 of #100DaysOfCode Today I solved three leetcode problems • check if the array is sorted and rotated • move zeros to end • intersection of two arrays #DSA #Arrays #Leetcode
✅ Day 100 of #100DaysOfDSA 📍 LC 3090: Earliest Possible Day of Full Bloom • Iterate through tasks array 🔁 • For each task, calculate total time = plantTime + growTime 🌱 • Track the minimum total time using Math.min() 🎯 ⏱ O(n) | 🗂 O(1) #Arrays #Greedy #Java #LeetCode
#Java from @geeksforgeeks 🚀 ✅#Arrays in Java → Basics Operation → Arrays of Objects ✅Multidimensional → Syntax for Multi-Dimensional → Two-Dimensional (2D) → Three - Dimensional (3D) #100DaysOfCode #GeeksforGeeks #gfg #nationskillup #skillupwithgfg #100DaysOfCoding
Day 23 of #100DaysOfCode. Today was a lesson in perseverance. Flew close to a solution for "Rearrange Array by Sign," but "Next Permutation" really made me think. It's humbling when you don't even know where to begin, but that's part of the journey. #DSA #Arrays #leetcode
✅ Day 97 of #100DaysOfDSA 📍 LC 238: Product of Array Except Self • Build prefix & suffix product arrays • Multiply prefix[i] ✖ suffix[i] for result • Avoid using division ❌ ⏱ Time: O(n) | 🗂 Space: O(n) #Arrays #Java #100DaysOfCode 🚀
Day 28/100 of #100DaysOfCode Today i solved three problems on leetcode •Smallest missing integer greater than sequential prefix sum •Longest alternating subarray •Determine the winner of a bowling game Real learning comes from problem solving #DSA #Arrays #Leetcode
✅ Day 122 of #150DaysOfDSA 📍 LC 2574: Left and Right Sum Differences ⚖️ Calculated prefix (left) and suffix (right) sums for each index, then took their absolute difference to build the result array. Efficient O(n) time | O(n) space ✅ (Beats 98% 🚀) #Arrays #PrefixSum #DSA
✅ Day 92 of #100DaysOfDSA 📍 LC 1304: Find N Unique Integers Sum up to Zero • Generated first integers sequentially • Calculated their running sum • Added the last number as -sum to balance the total to zero Time: O(n), Space: O(n) #Arrays #Java #100DaysOfCode 🚀
🚀Day 7 of DSA Journey: Solved Backtracking and DP Question #DSA #CodingJourney #Arrays #100DaysOfCode 1.Unique Paths (Rat in Maze ) 2.Unique Paths II (Rat in Maze with obstructions )
🚀 DAY 24/100 – #LearnInPublic Focus: Arrays – Fundamental Data Structure 📊 ✅ O(1) random access ✅ Fixed size, contiguous memory ✅ Fast lookups, costly inserts/deletes Built a contact manager in Java & compared array vs ArrayList performance with AI! #Java #Arrays #DSA
Something went wrong.
Something went wrong.
United States Trends
- 1. Steelers 33.8K posts
- 2. Rodgers 14.8K posts
- 3. Chargers 20.8K posts
- 4. #RHOP 5,978 posts
- 5. Herbert 9,146 posts
- 6. Schumer 182K posts
- 7. #HereWeGo 4,579 posts
- 8. Tim Kaine 9,073 posts
- 9. #ITWelcomeToDerry 2,844 posts
- 10. Durbin 13.3K posts
- 11. Resign 85.9K posts
- 12. Cade Cunningham 4,094 posts
- 13. Jaylen Warren 1,403 posts
- 14. Cornyn 8,977 posts
- 15. Rams 29.2K posts
- 16. Jassi 1,507 posts
- 17. #90DayFianceHappilyEverAfter 1,774 posts
- 18. #snfonnbc N/A
- 19. Drummond 2,675 posts
- 20. Commanders 145K posts