Skip to content

Commit 9239127

Browse files
committed
Add links for questions
1 parent 35aa325 commit 9239127

File tree

1 file changed

+26
-26
lines changed

1 file changed

+26
-26
lines changed

README.md

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -4,38 +4,38 @@ These questions test your ability to apply various techniques such as hashing, s
44

55
## Foundation Questions ❤️
66
| 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](https://github.com/CodingWallah/Arrays-DSA-Coding-Questions/blob/main/Sort%20Array%200-1-2.md) | [Video](#)
17-
Intersection of two arrays
18-
Reverse an array
19-
Swapping Elements in an array
20-
Find Min and Max in an Array
7+
-|-|-|-|-
8+
Wave Array| [CodingNinjas](https://www.codingninjas.com/codestudio/problems/sort-an-array-in-wave-form_975285), [GeeksForGeeks](https://practice.geeksforgeeks.org/problems/wave-array-1587115621/1)
9+
Subarray with given sum| [Leetcode](https://leetcode.com/problems/subarray-sum-equals-k/), [CodingNinjas](https://www.codingninjas.com/codestudio/problems/subarray-with-given-sum_842487), [GeeksForGeeks](https://practice.geeksforgeeks.org/problems/subarray-with-given-sum-1587115621/1?utm_source=geeksforgeeks) |
10+
Missing number in array| [Leetcode](https://leetcode.com/problems/missing-number/), [CodingNinjas](https://www.codingninjas.com/codestudio/problems/missing-number_6680467), [GeeksForGeeks](https://practice.geeksforgeeks.org/problems/missing-number-in-array1416/1?utm_source=geeksforgeeks) |
11+
Rotate Array | [Leetcode](https://leetcode.com/problems/rotate-array/), [CodingNinjas](https://www.codingninjas.com/codestudio/problems/rotate-array_1230543), [GeeksForGeeks](https://practice.geeksforgeeks.org/problems/rotate-array-by-n-elements-1587115621/1) | | [Video](https://youtu.be/0OTPqrEd74g)
12+
Find duplicates in an array| [Leetcode](https://leetcode.com/problems/find-all-duplicates-in-an-array/) |
13+
Remove all occurrences of Given Number | [Leetcode](https://leetcode.com/problems/remove-element/)
14+
Remove Duplicates from Sorted Array | [Leetcode](https://leetcode.com/problems/remove-duplicates-from-sorted-array/)
15+
Move all zeroes to end of array| [Leetcode](https://leetcode.com/problems/move-zeroes/)
16+
Sort an array of 0s, 1s and 2s | [Leetcode](https://leetcode.com/problems/sort-colors/submissions/) , [GeeksForGeeks](https://practice.geeksforgeeks.org/problems/sort-an-array-of-0s-1s-and-2s4231/1/) | [Code](https://github.com/CodingWallah/Arrays-DSA-Coding-Questions/blob/main/Sort%20Array%200-1-2.md) |
17+
Intersection of two arrays| [Leetcode](https://leetcode.com/problems/intersection-of-two-arrays/)
18+
Reverse an array| [Leetcode](https://leetcode.com/problems/reverse-string/)
19+
Swapping Elements in an array|
20+
Find Min and Max in an Array| [GeeksForGeeks](https://practice.geeksforgeeks.org/problems/max-min/1?utm_source=geeksforgeeks)
2121

2222
## Medium Questions ❤️‍🔥
2323
| Array Questions | Practice Link | Code Solutions | Video Solutions | HINT
2424
| ------------- | :-------------: | :-------------: | :---------: |:---------: |
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](https://github.com/CodingWallah/Arrays-DSA-Coding-Questions/blob/main/kth-largest-smallest.md) | [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
25+
Valid Moutain Array | [Leetcode](https://leetcode.com/problems/valid-mountain-array/) | [Code](#) | [Video](https://youtu.be/tVDTjm_fYbQ) | 2 pointers
26+
Majority Element | [Leetcode](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 | [Leetcode](https://leetcode.com/problems/kth-largest-element-in-an-array/) | [Code](https://github.com/CodingWallah/Arrays-DSA-Coding-Questions/blob/main/kth-largest-smallest.md) | [Video](#) | soritng / priority q
28+
Trapping Rain Water|[Leetcode](https://leetcode.com/problems/trapping-rain-water/), [CodingNinjas](https://www.codingninjas.com/codestudio/problems/trapping-rainwater_630519)
29+
Coin Change|[Leetcode](https://leetcode.com/problems/coin-change/), [CodingNinjas](https://www.codingninjas.com/codestudio/problems/coin-change-finite-supply_2545103)
30+
Stock span problem|[Leetcode](https://leetcode.com/problems/online-stock-span/), [CodingNinjas](https://www.codingninjas.com/codestudio/problems/stock-span_5243295)
31+
Merge k Sorted Arrays|[Leetcode](https://leetcode.com/problems/merge-k-sorted-lists/), [CodingNinjas](https://www.codingninjas.com/codestudio/problems/merge-k-sorted-arrays_975379)
32+
Next Permutation |[Leetcode](https://leetcode.com/problems/next-permutation), [CodingNinjas](https://www.codingninjas.com/codestudio/problems/next-permutaion_893046) | [Code](#) | [Video](#) | 2 poniters
33+
Kadane's Algorithm|[Leetcode](https://leetcode.com/problems/maximum-subarray/description/), [CodingNinjas](https://www.codingninjas.com/codestudio/problems/maximum-subarray_893296)
3434

3535

3636

3737
## Hard Questions 💔
3838
| Array Questions | Practice Link | Code Solutions | Video Solutions | HINT
39-
| ------------- | :-------------: | :-------------: | :---------: |:---------: |
40-
Merge Without Extra Space
41-
Next Smallest Palindrome
39+
-|-|-|-|-
40+
Merge Without Extra Space|[GeeksForGeeks](https://practice.geeksforgeeks.org/problems/merge-two-sorted-arrays-1587115620/1)
41+
Next Smallest Palindrome|[GeeksForGeeks](https://practice.geeksforgeeks.org/problems/next-smallest-palindrome4740/1?utm_source=geeksforgeeks)

0 commit comments

Comments
 (0)