Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shaikahmadnawaz/top-interview-questions-leetcode
LeetCode is the golden standard for technical interviews . In the face of tight and limited job preparation time, this set of selected high-frequency interview problems can help you improve efficiently and greatly increase the possibility of obtaining an offer.
https://github.com/shaikahmadnawaz/top-interview-questions-leetcode
dsa dsa-java interview interview-practice interview-preparation interview-questions java leetcode leetcode-java
Last synced: 29 days ago
JSON representation
LeetCode is the golden standard for technical interviews . In the face of tight and limited job preparation time, this set of selected high-frequency interview problems can help you improve efficiently and greatly increase the possibility of obtaining an offer.
- Host: GitHub
- URL: https://github.com/shaikahmadnawaz/top-interview-questions-leetcode
- Owner: shaikahmadnawaz
- Created: 2022-10-16T18:34:55.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-11-10T16:56:31.000Z (about 2 years ago)
- Last Synced: 2024-11-06T19:53:58.069Z (3 months ago)
- Topics: dsa, dsa-java, interview, interview-practice, interview-preparation, interview-questions, java, leetcode, leetcode-java
- Language: Java
- Homepage:
- Size: 21.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Top Interview Questions - Leetcode
## Data Structures and Algorithms - Java
## Arrays
### Easy
| P No | Problem | Tutorial Link |
| ---- | ------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- |
| 1 | [ Two Sum ](https://leetcode.com/problems/two-sum/) | [ view ](https://www.geeksforgeeks.org/given-an-array-a-and-a-number-x-check-for-pair-in-a-with-sum-as-x/) |
| 2 | [ Remove Duplicates from Sorted Array ](https://leetcode.com/problems/remove-duplicates-from-sorted-array/) | [ view ](https://www.geeksforgeeks.org/remove-duplicates-sorted-array/) |
| 3 | [ Plus One ](https://leetcode.com/problems/plus-one/) | [ view ](https://www.geeksforgeeks.org/adding-one-to-number-represented-as-array-of-digits/) |
| 4 | [ Merge Sorted Array ](https://leetcode.com/problems/merge-sorted-array/) | [ view ](https://www.geeksforgeeks.org/merge-two-sorted-arrays/) |
| 5 | [ Convert Sorted Array to Binary Search Tree ](https://leetcode.com/problems/convert-sorted-array-to-binary-search-tree/) | [ view ](https://leetcode.com/problems/merge-sorted-array/) |
| 6 | [ Pascal's Triangle ](https://leetcode.com/problems/pascals-triangle/) | [ view ](https://www.geeksforgeeks.org/pascal-triangle/) |
| 7 | [ Best Time to Buy and Sell Stock ](https://leetcode.com/problems/best-time-to-buy-and-sell-stock/) | [ view ](https://www.geeksforgeeks.org/best-time-to-buy-and-sell-stock/) |
| 8 | [ Single Number ](https://leetcode.com/problems/single-number/) | [ view ](https://www.geeksforgeeks.org/find-the-element-that-appears-once/) |
| 9 | [ Majority Element ](https://leetcode.com/problems/majority-element/) | [ view ](https://www.geeksforgeeks.org/majority-element/) |
| 10 | [ Contains Duplicate ](https://leetcode.com/problems/contains-duplicate/) | [ view ](https://www.geeksforgeeks.org/find-duplicates-in-on-time-and-constant-extra-space/) |
| 11 | [ Missing Number ](https://leetcode.com/problems/missing-number/) | [ view ](https://www.geeksforgeeks.org/find-the-missing-number/) |
| 12 | [ Move Zeroes ](https://leetcode.com/problems/move-zeroes/) | [ view ](https://www.geeksforgeeks.org/move-zeroes-end-array/) |
| 13 | [ Intersection of Two Arrays II ](https://leetcode.com/problems/intersection-of-two-arrays-ii/) | [ view ](https://leetcode.com/problems/intersection-of-two-arrays-ii/discuss/954800/Java-solution-with-explanation-and-pictures) |### Medium
| P No | Problem | Tutorial Link |
| ---- | --------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| 14 | [ Container With Most Water ](https://leetcode.com/problems/container-with-most-water/) | [ view ](https://www.geeksforgeeks.org/container-with-most-water/) |
| 15 | [ 3Sum ](https://leetcode.com/problems/3sum/) | [ view ](https://www.geeksforgeeks.org/find-a-triplet-that-sum-to-a-given-value/) |
| 16 | [ Search in Rotated Sorted Array ](https://leetcode.com/problems/search-in-rotated-sorted-array/) | [ view ](https://www.geeksforgeeks.org/search-an-element-in-a-sorted-and-pivoted-array/) |
| 17 | [ Find First and Last Position of Element in Sorted Array ](https://leetcode.com/problems/find-first-and-last-position-of-element-in-sorted-array/) | [ view ](https://www.geeksforgeeks.org/find-first-and-last-positions-of-an-element-in-a-sorted-array/) |
| 18 | [ Valid Sudoku ](https://leetcode.com/problems/valid-sudoku/) | [ view ](https://www.geeksforgeeks.org/check-if-given-sudoku-board-configuration-is-valid-or-not/) |
| 19 | [ Permutations ](https://leetcode.com/problems/permutations/) | [ view ]() |
| 20 | [ Rotate Image ](https://leetcode.com/problems/rotate-image/) | [ view ](https://www.geeksforgeeks.org/inplace-rotate-square-matrix-by-90-degrees/) |
| 21 | [ Group Anagrams ](https://leetcode.com/problems/group-anagrams/) | [ view ](https://www.geeksforgeeks.org/given-a-sequence-of-words-print-all-anagrams-together/) |
| 22 | [ Maximum Subarray ](https://leetcode.com/problems/maximum-subarray/) | [ view ](https://www.geeksforgeeks.org/largest-sum-contiguous-subarray/) |
| 23 | [ Spiral Matrix ](https://leetcode.com/problems/spiral-matrix/) | [ view ](https://www.geeksforgeeks.org/form-a-spiral-matrix-from-the-given-array/) |
| 24 | [ Jump Game ](https://leetcode.com/problems/jump-game/) | [ view ](https://www.geeksforgeeks.org/minimum-number-of-jumps-to-reach-end-of-a-given-array/) |