10000 GitHub - CodingWallah/JAVA-DSA-VectorCourse at 7af470106f572421c91fe876ba37831b070ed0c8
[go: up one dir, main page]

Skip to content

CodingWallah/JAVA-DSA-VectorCourse

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 

Repository files navigation

Arrays-DSA-Coding-Questions 🚀

Arrays are one of the most fundamental and widely used data structures in programming. 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.

Foundation Questions ❤️

Array Questions Practice Link Code Solutions Video Solutions HINT
Wave Array Leetcode
Subarray with given sum Leetcode
Missing number in array Leetcode
Rotate Array Leetcode Video
Find duplicates in an array Leetcode
Remove all occurrences of Given Number Leetcode
Remove Duplicates from Sorted Array Leetcode
Move all zeroes to end of array Leetcode
Sort an array of 0s, 1s and 2s Leetcode
Intersection of two arrays Leetcode
Reverse an array Leetcode
Swapping Elements in an array
Remove Min and Max in an Array Leetcode

Medium Questions ❤ 79B1 ‍🔥

Array Questions Practice Link Code Solutions Video Solutions HINT
Valid Moutain Array Leetcode Code Video 2 pointers
Majority Element Leetcode Code Video Sorting / or Boyer-Moore Voting Algorithm
Kth largest/smallest element in an array Leetcode Code Video soritng / priority q
Trapping Rain Water Leetcode
Coin Change Leetcode
Stock span problem Leetcode
Merge k Sorted Arrays Leetcode
Next Permutation Leetcode Code Video 2 poniters
Kadane's Algorithm Leetcode

Hard Questions 💔

Array Questions Practice Link Code Solutions Video Solutions HINT
Merge Without Extra Space GeeksForGeeks
Next Smallest Palindrome GeeksForGeeks

0