#hashmap 검색 결과
✅ Day 108 of #150DaysOfDSA 📍 LC 631: Design Excel Sum Formula Implemented a mini spreadsheet with cell updates, reset & formula evaluation. Used HashMap for storage & parsing formulas. ⏱ O(n) | O(1) #Design #HashMap #150DaysOfDSA ✨ Took help from a YouTube video 2 understand

🔤 First Unique Character in a String Track character frequency & their indices → first index with frequency 1 = answer ✅ 🧠 TC: O(n) 📦 SC: O(n) 💡 Code is in the comments! #DSA #HashMap #Queue #Leetcode #100DaysOfCode

✅ 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 29 of #30DayOfCodingChallenge with #Java - Learning #HashMap in Java - solving hashmap and hashset questions on gfg . . #DSA #coding #java #programming

🧵 Day 311 of #geekstreak2025 ✅ GFG POTD: Count Unique Vowel Strings 🧠 Counted frequency of each vowel in the string, then multiplied all frequencies × factorial of distinct vowels count. Used hashmap + frequency logic — worked clean! #dsa #hashmap #math #string #potd

eu amo usar hashtags porra #relatable #hashtags #hashmap #vaitomando #noprocedimento #calendula01032025 #teefodeclothing


Explored unordered_map in C++ today! Solved LC 242 (Valid Anagram), LC 1 (Two Sum), and LC 1207 (Unique Occurrences). Maps are super helpful for frequency-based problems. New language learning coming soon 👀 #DSA #LeetCode #HashMap #Cplusplus #CodeNewbie



✅ Day 120 — K Different Subarrays 🧠 Trick: Exactly K = atMost(K) - atMost(K-1) 📦 Sliding window + hashmap 📈 0 ms AC on a HARD problem! #LeetCode #SlidingWindow #HashMap #100DaysOfCode #C++

✅ Day 106 of #150DaysOfDSA 📍 LC 2364: Count Number of Bad Pairs Count total pairs using n*(n-1)/2. Use a hashmap to track nums[i] - i values and count good pairs. Bad pairs = Total pairs - Good pairs. ⏱ O(n) | O(n) #HashMap #Math #150DaysOfDSA
![Kushal_Koradia's tweet image. ✅ Day 106 of #150DaysOfDSA
📍 LC 2364: Count Number of Bad Pairs
Count total pairs using n*(n-1)/2.
Use a hashmap to track nums[i] - i values and count good pairs.
Bad pairs = Total pairs - Good pairs.
⏱ O(n) | O(n)
#HashMap #Math #150DaysOfDSA](https://pbs.twimg.com/media/G2BdjitXYAMrqFI.jpg)
Today, I designed an X mockup by solving the challenge "355. Design Twitter" on LeetCode using Go! #Heap #Hashmap #LinkedList Happy LeetCoding!


✅ 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


Solved Insert Delete GetRandom O(1) 🎲 Used a combo of unordered_map + vector for O(1) insert, delete & random access 💡 Time Complexity: O(1) avg per operation #200DaysOfCode #LeetCode #HashMap #DSA #KeepCoding

✅ 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 🚀

There are slightly different routes on how the accounts are manipulate, depending on where the accounts data resides. If the data was from cold storage, it is first converted to a #hashmap after transformation. Why? That's the ingenious part...
✅ Day 108 of #150DaysOfDSA 📍 LC 631: Design Excel Sum Formula Implemented a mini spreadsheet with cell updates, reset & formula evaluation. Used HashMap for storage & parsing formulas. ⏱ O(n) | O(1) #Design #HashMap #150DaysOfDSA ✨ Took help from a YouTube video 2 understand

✅ Day 106 of #150DaysOfDSA 📍 LC 2364: Count Number of Bad Pairs Count total pairs using n*(n-1)/2. Use a hashmap to track nums[i] - i values and count good pairs. Bad pairs = Total pairs - Good pairs. ⏱ O(n) | O(n) #HashMap #Math #150DaysOfDSA
![Kushal_Koradia's tweet image. ✅ Day 106 of #150DaysOfDSA
📍 LC 2364: Count Number of Bad Pairs
Count total pairs using n*(n-1)/2.
Use a hashmap to track nums[i] - i values and count good pairs.
Bad pairs = Total pairs - Good pairs.
⏱ O(n) | O(n)
#HashMap #Math #150DaysOfDSA](https://pbs.twimg.com/media/G2BdjitXYAMrqFI.jpg)
TL;DR: HashMap is fast because it uses hashing + arrays under the hood. It handles collisions gracefully and powers many core DSA techniques. Once you truly understand it, you’ll start seeing it everywhere in your code. #Java #HashMap #DSA #Backend #SystemDesign #CodingTips
Most developers use HashMap every day but very few understand how it actually works under the hood. Let’s break it down simply and also see where it’s most useful in DSA 👇 #Java #HashMap #SystemDesign #DSA #Backend
Day 55 of my #DSA journey: Revised heaps ✅ Started hashing 🔑 Learned #HashMap & explored its operations. Feeling more confident with key-value concepts 💻✨


Letter Combinations of a Phone: leetcode.com/problems/lette… My Solution: Time Complexity: O(4^N x N) Space Complexity: O(N) #LeetCode #Backtrack #Hashmap #DSA #Vector #String #CPP #Programming #CodingChallenge #Problem #Solution

Wenn hashCode(), lügt wird die #HashMap inkonsistent. Im sicherheitskritischen Bereich fatal: Lookup-Ausfall, Authorization Bypass, Resource Lock Hijack — alles möglich. @SvenRuppert liefert eine genaue Analyse mit interaktiver #Vaadin-Demo: javapro.io/de/wenn-hashco… #JavaSecurity
🔤 First Unique Character in a String Track character frequency & their indices → first index with frequency 1 = answer ✅ 🧠 TC: O(n) 📦 SC: O(n) 💡 Code is in the comments! #DSA #HashMap #Queue #Leetcode #100DaysOfCode


✅ Day 108 of #150DaysOfDSA 📍 LC 631: Design Excel Sum Formula Implemented a mini spreadsheet with cell updates, reset & formula evaluation. Used HashMap for storage & parsing formulas. ⏱ O(n) | O(1) #Design #HashMap #150DaysOfDSA ✨ Took help from a YouTube video 2 understand

🧵 Day 311 of #geekstreak2025 ✅ GFG POTD: Count Unique Vowel Strings 🧠 Counted frequency of each vowel in the string, then multiplied all frequencies × factorial of distinct vowels count. Used hashmap + frequency logic — worked clean! #dsa #hashmap #math #string #potd

#Leetcode 3484, just some simple builtin map functions for get & set. Plus some simple string parsing for the formula solving. Don't initalize an entire matrix for the spreadsheet, when you can just have a small hashmap instead :) #JS #Hashmap #InterviewPrep

🔤 First Unique Character in a String Track character frequency & their indices → first index with frequency 1 = answer ✅ 🧠 TC: O(n) 📦 SC: O(n) 💡 Code is in the comments! #DSA #HashMap #Queue #Leetcode #100DaysOfCode


eu amo usar hashtags porra #relatable #hashtags #hashmap #vaitomando #noprocedimento #calendula01032025 #teefodeclothing

Day 29 of #30DayOfCodingChallenge with #Java - Learning #HashMap in Java - solving hashmap and hashset questions on gfg . . #DSA #coding #java #programming

Explored unordered_map in C++ today! Solved LC 242 (Valid Anagram), LC 1 (Two Sum), and LC 1207 (Unique Occurrences). Maps are super helpful for frequency-based problems. New language learning coming soon 👀 #DSA #LeetCode #HashMap #Cplusplus #CodeNewbie



✅ Day 120 — K Different Subarrays 🧠 Trick: Exactly K = atMost(K) - atMost(K-1) 📦 Sliding window + hashmap 📈 0 ms AC on a HARD problem! #LeetCode #SlidingWindow #HashMap #100DaysOfCode #C++

Something went wrong.
Something went wrong.
United States Trends
- 1. Bears 89.7K posts
- 2. Jake Moody 13.7K posts
- 3. Snell 24.4K posts
- 4. Caleb 49.5K posts
- 5. Bills 142K posts
- 6. Falcons 51.4K posts
- 7. Josh Allen 26.7K posts
- 8. Jayden 23K posts
- 9. phil 176K posts
- 10. #BearDown 2,381 posts
- 11. Happy Birthday Charlie Kirk 4,796 posts
- 12. Swift 291K posts
- 13. Joji 30.1K posts
- 14. Ben Johnson 4,448 posts
- 15. Turang 4,331 posts
- 16. #Dodgers 15.4K posts
- 17. Troy Aikman 6,552 posts
- 18. Roki 6,130 posts
- 19. Bijan 33K posts
- 20. Brewers 48.6K posts