|
| 1 | +# Arrays-DSA-Coding-Questions 🚀 |
| 2 | +Arrays are one of the most fundamental and widely used data structures in programming. |
| 3 | +These questions test your ability to apply various techniques such as hashing, sorting, binary search, two pointers, sliding window, divide and conquer, dynamic programming, etc. |
| 4 | + |
| 5 | +## Foundation Questions ❤️ |
| 6 | +| Array Questions | Practice Link | Code Solutions | Video Solutions | HINT |
| 7 | +| ------------- | :-------------: | :-------------: | :---------: |:---------: | |
| 8 | +Wave Array |
| 9 | +Subarray with given sum |
| 10 | +Missing number in array |
| 11 | +Rotate Array | [Solve](https://leetcode.com/problems/rotate-array/) | [CODE](#) | [Video](https://youtu.be/0OTPqrEd74g) |
| 12 | +Find duplicates in an array |
| 13 | +Remove all occurrences of Given Number | [Solve](https://leetcode.com/problems/remove-element/) |
| 14 | +Remove Duplicates from Sorted Array | [Solve](https://leetcode.com/problems/remove-duplicates-from-sorted-array/) |
| 15 | +Move all zeroes to end of array |
| 16 | +Sort an array of 0s, 1s and 2s | [Solve](https://leetcode.com/problems/sort-colors/submissions/) , [Solve](https://practice.geeksforgeeks.org/problems/sort-an-array-of-0s-1s-and-2s4231/1/) | [Code](#) | [Video](#) |
| 17 | +Intersection of two arrays |
| 18 | +Reverse an array |
| 19 | +Swapping Elements in an array |
| 20 | +Find Min and Max in an Array |
| 21 | + |
| 22 | +## Medium Questions ❤️🔥 |
| 23 | +| Array Questions | Practice Link | Code Solutions | Video Solutions | HINT |
| 24 | +| ------------- | :-------------: | :-------------: | :---------: |:---------: | |
| 25 | +Valid Moutain Array | [Solve](https://leetcode.com/problems/valid-mountain-array/) | [Code](#) | [Video](https://youtu.be/tVDTjm_fYbQ) | 2 pointers |
| 26 | +Majority Element | [Solve](https://leetcode.com/problems/majority-element/) | [Code](#) | [Video](https://www.youtube.com/watch?v=cLE1J34pYUo) | Sorting / or Boyer-Moore Voting Algorithm |
| 27 | +Kth largest/smallest element in an array | [Solve](https://leetcode.com/problems/kth-largest-element-in-an-array/) | [Code](#) | [Video](#) | soritng / priority q |
| 28 | +Trapping Rain Water |
| 29 | +Coin Change |
| 30 | +Stock span problem |
| 31 | +Merge k Sorted Arrays |
| 32 | +Next Permutation | [Solve](https://leetcode.com/problems/next-permutation) | [Code](#) | [Video](#) | 2 poniters |
| 33 | +Kadane's Algorithm |
| 34 | + |
| 35 | + |
| 36 | + |
| 37 | +## Hard Questions 💔 |
| 38 | +| Array Questions | Practice Link | Code Solutions | Video Solutions | HINT |
| 39 | +| ------------- | :-------------: | :-------------: | :---------: |:---------: | |
| 40 | +Merge Without Extra Space |
| 41 | +Next Smallest Palindrome |
0 commit comments