0% found this document useful (0 votes)
1 views3 pages

LeetCode Interview Questions

The document lists various LeetCode interview questions categorized by topics such as Array & Hashing, Two Pointers, Sliding Window, Binary Tree, Stack, Linked List, Dynamic Programming, and Greedy. Each category includes easy and medium difficulty problems along with their respective links. Additionally, it highlights a 'Top 5 Must-Do' section featuring key problems to focus on.

Uploaded by

muthukumarmk9626
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
1 views3 pages

LeetCode Interview Questions

The document lists various LeetCode interview questions categorized by topics such as Array & Hashing, Two Pointers, Sliding Window, Binary Tree, Stack, Linked List, Dynamic Programming, and Greedy. Each category includes easy and medium difficulty problems along with their respective links. Additionally, it highlights a 'Top 5 Must-Do' section featuring key problems to focus on.

Uploaded by

muthukumarmk9626
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

LeetCode Interview Questions PDF

Array & Hashing


Easy:

- Two Sum - https://leetcode.com/problems/two-sum/


- Contains Duplicate - https://leetcode.com/problems/contains-duplicate/
- Valid Anagram - https://leetcode.com/problems/valid-anagram/

Medium:

- Group Anagrams - https://leetcode.com/problems/group-anagrams/


- Top K Frequent Elements - https://leetcode.com/problems/top-k-frequent-elements/
- Product of Array Except Self - https://leetcode.com/problems/product-of-array-except-self/

Two Pointers
Easy:

- Valid Palindrome - https://leetcode.com/problems/valid-palindrome/


- Merge Sorted Array - https://leetcode.com/problems/merge-sorted-array/

Medium:

- Two Sum II - https://leetcode.com/problems/two-sum-ii-input-array-is-sorted/


- 3Sum - https://leetcode.com/problems/3sum/
- Container With Most Water - https://leetcode.com/problems/container-with-most-water/

Sliding Window
Medium:

- Best Time to Buy and Sell Stock -


https://leetcode.com/problems/best-time-to-buy-and-sell-stock/
- Longest Substring Without Repeating Characters -
https://leetcode.com/problems/longest-substring-without-repeating-characters/
- Maximum Average Subarray I - https://leetcode.com/problems/maximum-average-subarray-i/

Binary Tree / DFS / BFS


Easy:

- Maximum Depth of Binary Tree - https://leetcode.com/problems/maximum-depth-of-binary-tree/


- Invert Binary Tree - https://leetcode.com/problems/invert-binary-tree/
Medium:

- Binary Tree Level Order Traversal -


https://leetcode.com/problems/binary-tree-level-order-traversal/
- Diameter of Binary Tree - https://leetcode.com/problems/diameter-of-binary-tree/

Stack / Monotonic Stack


Medium:

- Valid Parentheses - https://leetcode.com/problems/valid-parentheses/


- Daily Temperatures - https://leetcode.com/problems/daily-temperatures/
- Min Stack - https://leetcode.com/problems/min-stack/

Linked List
Easy:

- Reverse Linked List - https://leetcode.com/problems/reverse-linked-list/


- Merge Two Sorted Lists - https://leetcode.com/problems/merge-two-sorted-lists/

Medium:

- Add Two Numbers - https://leetcode.com/problems/add-two-numbers/


- Linked List Cycle - https://leetcode.com/problems/linked-list-cycle/

Dynamic Programming
Medium:

- Climbing Stairs - https://leetcode.com/problems/climbing-stairs/


- House Robber - https://leetcode.com/problems/house-robber/
- Maximum Subarray - https://leetcode.com/problems/maximum-subarray/
- Coin Change - https://leetcode.com/problems/coin-change/

Greedy
Medium:

- Jump Game - https://leetcode.com/problems/jump-game/


- Gas Station - https://leetcode.com/problems/gas-station/
- Partition Labels - https://leetcode.com/problems/partition-labels/

Top 5 Must-Do
Mixed:

- Two Sum - https://leetcode.com/problems/two-sum/


- Longest Substring Without Repeating Characters -
https://leetcode.com/problems/longest-substring-without-repeating-characters/
- Merge Intervals - https://leetcode.com/problems/merge-intervals/
- Lowest Common Ancestor of a Binary Tree -
https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-tree/
- Word Break - https://leetcode.com/problems/word-break/

You might also like