Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/aswinbarath/hashmaps

Problems based on the Hashmaps
https://github.com/aswinbarath/hashmaps

hashing java problem-solving

Last synced: about 4 hours ago
JSON representation

Problems based on the Hashmaps

Awesome Lists containing this project

README

        

# HashMaps

Problems based on the HashMap data structure

## SDE Sheet problems on HashMaps

[Sheet Link](https://takeuforward.org/interviews/strivers-sde-sheet-top-coding-interview-problems/)

### Day 4 (Hashing)

| Completion Status | Problems on HashMaps | Explanation | Solution |
| --- | --- | --- | --- |
| ✅ | [Two Sum](https://leetcode.com/problems/two-sum/) | [Brute, Better & Optimal Approaches](#) | [Java Soultion](./src/sde_sheet/TwoSum.java) |
| ✅ | [4Sum](https://leetcode.com/problems/4sum/) | [Brute, Better & Optimal Approaches](#) | [Java Soultion](./src/sde_sheet/FourSum.java) |
| ✅ | [Longest Consecutive Sequence](https://leetcode.com/problems/longest-consecutive-sequence/) | [Brute, Better & Optimal Approaches](#) | [Java Soultion](./src/sde_sheet/LongestConsecutiveSequence.java) |
| ✅ | [Largest subarray with 0 sum](https://practice.geeksforgeeks.org/problems/largest-subarray-with-0-sum/1#) | [Brute, Better & Optimal Approaches](#) | [Java Soultion](./src/sde_sheet/Largest_0_Sum_Subarray.java) |
| ✅ | [Count the number of subarrays having a given XOR](https://www.geeksforgeeks.org/count-number-subarrays-given-xor/) | [Brute, Better & Optimal Approaches](#) | [Java Soultion](./src/sde_sheet/CountXORsubarrays.java) |
| 🔃 | [Longest Substring Without Repeating Characters](https://leetcode.com/problems/longest-substring-without-repeating-characters/) | [Brute, Better & Optimal Approaches](#) | [Java Soultion](./src/sde_sheet/LongestSubstring.java) |

---