Leetcode Questions
Leetcode Questions
Leetcode Questions
+91-7260058093
[email protected]
WWW.ALGOTUTOR.IO
Array
1. Two Sum
Given an array of integer nums and an integer target, return
indices of the two numbers such that they add up to the target.
You may assume that each input would have exactly one solution,
and you may not use the same element twice.
PRACTICE NOW
PRACTICE NOW
01
3. Contains Duplicate
Given an integer array nums, return true if any value appears at
least twice in the array, and return false if every element is
distinct.
PRACTICE NOW
You must write an algorithm that runs in O(n) time and without
using the division operation.
PRACTICE NOW
02
5. Maximum Subarray
Given an integer array nums, find the subarray with the largest
sum, and return its sum.
PRACTICE NOW
PRACTICE NOW
03
7. Find the Minimum in Rotated
Sorted Array
Given the sorted rotated array nums of unique elements, return
the minimum element of this array.
PRACTICE NOW
PRACTICE NOW
04
9. 3Sum
Given an integer array nums, return all the triplets [nums[i],
nums[j], nums[k]]
such that i != j, i != k, and j != k, and nums[i] + nums[j] + nums[k] == 0.
Notice that the solution set must not contain duplicate triplets.
PRACTICE NOW
Find two lines that together with the x-axis form a container, such
that the container contains the most water.
Return the maximum amount of water a container can store.
PRACTICE NOW
05
Matrix
1. Set Matrix Zeroes
Given an m x n integer matrix, if an element is 0, set its entire row
and column to 0's. You must do it in place.
PRACTICE NOW
2. Spiral Matrix
Given an m x n matrix, return all elements of the matrix in spiral
order.
PRACTICE NOW
06
3. Rotate Image
You are given an n x n 2D matrix representing an image, rotate the
image by 90 degrees (clockwise).
You have to rotate the image in place, which means you have to
modify the input 2D matrix directly. DO NOT allocate another 2D
matrix and do the rotation.
PRACTICE NOW
4. Word Search
Given an m x n grid of characters board and a string word, return
true if the word exists in the grid.
07
PRACTICE NOW
String
1. Longest Substring Without
Repeating Characters
Given a string s, find the length of the longest
substring without repeating characters.
Input: s = "abcabcbb"
Output: 3
Explanation: The answer is "abc", with a length of 3.
PRACTICE NOW
Input: s = "ABAB", k = 2
Output: 4
Explanation: Replace the two 'A's with two 'B's or vice versa.
PRACTICE NOW
08
3. Minimum Window Substring
Given two strings s and t of lengths m and n respectively, return
the minimum window substring of s such that every character in t
(including duplicates) is included in the window. If there is no such
substring, return the empty string "".
PRACTICE NOW
4. Valid Anagram
Given two strings s and t, return true if t is an anagram of s, and
false otherwise.
PRACTICE NOW
09
5. Group Anagrams
Given an array of strings strs, group the anagrams together. You
can return the answer in any order.
PRACTICE NOW
6. Valid Parentheses
Given a string s containing just the characters '(', ')', '{', '}', '[' and ']',
determine if the input string is valid.
Input: s = "()"
Output: true
Input: s = "()[]{}"
Output: true
PRACTICE NOW
10
7. Longest Palindromic Substring
Given a string s, return the longest palindromic substring in s.
Input: s = "babad"
Output: "bab"
Explanation: "aba" is also a valid answer.
Input: s = "cbbd"
Output: "bb"
PRACTICE NOW
8. Palindromic Substrings
Given a string s, return the number of palindromic substrings in it.
A string is a palindrome when it reads the same backward as
forward.
Input: s = "abc"
Output: 3
Explanation: Three palindromic strings: "a", "b", "c".
Input: s = "aaa"
Output: 6
Explanation: Six palindromic strings: "a", "a", "a", "aa", "aa", "aaa".
PRACTICE NOW
11
9. Encode and Decode Strings
Design an algorithm to encode a list of strings to a string. The
encoded string is then sent over the network and decoded back to
the original list of strings.
Input: [“lint”,“code”,“love”,“you”]
Output: [“lint”,“code”,“love”,“you”]
Explanation: One possible encode method is: “lint:;code:;love:;you”
PRACTICE NOW
12
Linked List
1. Reverse Linked Lists
Given the head of a singly linked list, reverse the list, and return
the reversed list.
PRACTICE NOW
There is a cycle in a linked list if there is some node in the list that
can be reached again by continuously following the next pointer.
Internally, pos is used to denote the index of the node that the
tail's next pointer is connected to. Note that pos is not passed as a
parameter.
PRACTICE NOW
13
3. Merge Two Sorted Lists
You are given the heads of two sorted linked lists list1 and list2.
Merge the two lists in a one-sorted list. The list should be made by
splicing together the nodes of the first two lists.
PRACTICE NOW
Merge all the linked lists into one sorted linked list and return it.
PRACTICE NOW
14
5. Remove Nth Node From End of List
Given the head of a linked list, remove the nth node from the end
of the list and return its head.
PRACTICE NOW
6. Reorder List
You are given the head of a singly linked list. The list can be
represented as:
L0 → L1 → … → Ln - 1 → Ln
You may not modify the values in the list's nodes. Only nodes
themselves may be changed.
PRACTICE NOW
15
Tree
1. Maximum Depth of Binary Tree
Given the root of a binary tree, return its maximum depth.
A binary tree's maximum depth is the number of nodes along the
longest path from the root node down to the farthest leaf node.
PRACTICE NOW
2. Same Tree
Given the roots of two binary trees p and q, write a function to
check if they are the same or not.
Two binary trees are considered the same if they are structurally
identical, and the nodes have the same value.
PRACTICE NOW
16
3. Invert Binary Tree
Given the root of a binary tree, invert the tree, and return its root.
PRACTICE NOW
The path sum of a path is the sum of the node's values in the path.
Given the root of a binary tree, return the maximum path sum of
any non-empty path.
PRACTICE NOW 17
5. Binary Tree Level Order Traversal
Given the root of a binary tree, return the level order traversal of
its nodes' values. (i.e., from left to right, level by level).
PRACTICE NOW
PRACTICE NOW
18
7. Subtree of Another Tree
Given the roots of two binary trees root and subRoot, return true if
there is a subtree of root with the same structure and node values
of subRoot and false otherwise.
PRACTICE NOW
PRACTICE NOW
19
9. Validate Binary Search Tree
Given the root of a binary tree, determine if it is a valid binary
search tree (BST).
PRACTICE NOW
PRACTICE NOW
20
11. Lowest Common Ancestor of a
Binary Search Tree
Given a binary search tree (BST), find the lowest common ancestor
(LCA) node of two given nodes in the BST.
PRACTICE NOW
PRACTICE NOW 21
13. Design Add and Search Words
Data Structure
Design a data structure that supports adding new words and
finding if a string matches any previously added string.
Implement the WordDictionary class:
WordDictionary() Initializes the object.
void addWord(word) Adds a word to the data structure, it can
be matched later.
bool search(word) Returns true if there is any string in the data
structure that matches the word or false otherwise. A word may
contain dots '.' where dots can be matched with any letter.
PRACTICE NOW
22
PRACTICE NOW
Heap
1. Merge k Sorted Lists
You are given an array of k linked-lists lists, each linked list is
sorted in ascending order. Merge all the linked lists into one sorted
linked list and return it.
PRACTICE NOW
PRACTICE NOW
23
3. Find Median from Data Stream
The median is the middle value in an ordered integer list. If the size
of the list is even, there is no middle value, and the median is the
mean of the two middle values.
For example, for arr = [2,3,4], the median is 3.
For example, for arr = [2,3], the median is (2 + 3) / 2 = 2.5.
Explanation:
MedianFinder medianFinder = new MedianFinder();
medianFinder.addNum(1); // arr = [1]
medianFinder.addNum(2); // arr = [1, 2]
medianFinder.findMedian(); // return 1.5 (i.e., (1 + 2) / 2)
medianFinder.addNum(3); // arr[1, 2, 3]
medianFinder.findMedian(); // return 2.0
PRACTICE NOW
24
Graph
1. Clone Graph
Given a reference of a node in a connected undirected graph.
Return a deep copy (clone) of the graph.
Each node in the graph contains a value (int) and a list (List[Node])
of its neighbors.
class Node {
public int val;
public List<Node> neighbors;
}
PRACTICE NOW
25
2. Course Schedule
There are a total of numCourses courses you have to take, labeled
from 0 to numCourses - 1. You are given an array of prerequisites
where prerequisites[i] = [ai, bi] indicates that you must take course
bi first if you want to take course ai.
For example, the pair [0, 1], indicates that to take course 0 you
have to first take course 1.
Return true if you can finish all courses. Otherwise, return false.
PRACTICE NOW
3. Number of Islands
Given an m x n 2D binary grid which represents a map of '1's (land)
and '0's (water), return the number of islands.
PRACTICE NOW
26
4. Pacific Atlantic Water Flow
There is an m x n rectangular island that borders both the Pacific
Ocean and the Atlantic Ocean. The Pacific Ocean touches the
island's left and top edges, and the Atlantic Ocean touches the
island's right and bottom edges.
The island is partitioned into a grid of square cells. You are given
an m x n integer matrix height where heights[r][c] represent the
height above sea level of the cell at coordinate (r, c).
The island receives a lot of rain, and the rainwater can flow to
neighboring cells directly north, south, east, and west if the
neighboring cell's height is less than or equal to the current cell's
height. Water can flow from any cell adjacent to an ocean into the
ocean.
PRACTICE NOW
27
5. Longest Consecutive Sequence
Given an unsorted array of integers nums, return the length of the
longest consecutive elements sequence.
PRACTICE NOW
6. Alien Dictionary
There is a new alien language that uses the Latin alphabet.
However, the order of letters is unknown to you. You receive a list
of non-empty words from the dictionary, where words are sorted
lexicographically by the rules of this new language. Derive the
order of letters in this language.
Input:
[
"wrt",
"wrf",
"er",
"ett",
"rftt"
]
Output: "wertf"
28
PRACTICE NOW
7. Graph Valid Tree
Given n nodes labeled from 0 to n-1 and a list of undirected edges
(each edge is a pair of nodes), write a function to check whether
these edges make up a valid tree.
PRACTICE NOW
0 3
| |
1 --- 2 4
Output: 2
PRACTICE NOW
29
Dynamic
Programming
1. Climbing Stairs
You are climbing a staircase. It takes n steps to reach the top.
Each time you can either climb 1 or 2 steps. In how many distinct
ways can you climb to the top?
Input: n = 2
Output: 2
Explanation: There are two ways to climb to the top.
1. 1 step + 1 step
2. 2 steps
PRACTICE NOW
2. Coin Change
You are given an integer array of coins representing coins of
different denominations and an integer amount representing a
total amount of money.
Return the fewest number of coins that you need to make up that
amount. If that amount of money cannot be made up by any
combination of the coins, return -1.
PRACTICE NOW
30
3. Longest Increasing Subsequence
Given an integer array nums, return the length of the longest
strictly increasing subsequence.
PRACTICE NOW
PRACTICE NOW
31
5. Word Break
Given a string s and a dictionary of strings wordDict, return true if s
can be segmented into a space-separated sequence of one or more
dictionary words.
Note that the same word in the dictionary may be reused multiple
times in the segmentation.
PRACTICE NOW
6. Combination Sum
Given an array of distinct integer nums and a target integer target,
return the number of possible combinations that add up to the
target.
PRACTICE NOW 32
7. House Robber
You are a professional robber planning to rob houses along a
street. Each house has a certain amount of money stashed, the
only constraint stopping you from robbing each of them is that
adjacent houses have security systems connected and it will
automatically contact the police if two adjacent houses were
broken into on the same night.
PRACTICE NOW
8. House Robber II
You are a professional robber planning to rob houses along a street.
Each house has a certain amount of money stashed. All houses at this
place are arranged in a circle. That means the first house is the
neighbor of the last one. Meanwhile, adjacent houses have a security
system connected, and it will automatically contact the police if two
adjacent houses were broken into on the same night.
PRACTICE NOW
33
9. Decode Ways
A message containing letters from A-Z can be encoded into
numbers using the following mapping:
'A' -> "1", 'B' -> "2",... 'Z' -> "26"
To decode an encoded message, all the digits must be grouped and
then mapped back into letters using the reverse of the mapping
above (there may be multiple ways). For example, "11106" can be
mapped into:
"AAJF" with the grouping (1 1 10 6)
"KJF" with the grouping (11 10 6)
Given a string s containing only digits, return the number of ways
to decode it.
Input: s = "12"
Output: 2
PRACTICE NOW
Input: m = 3, n = 2
Output: 3
PRACTICE NOW
34
11. Jump Game
You are given an integer array nums. You are initially positioned at
the array's first index, and each element in the array represents
your maximum jump length at that position.
Return true if you can reach the last index, or false otherwise.
Constraints:
1 <= nums.length <= 104
0 <= nums[i] <= 105
PRACTICE NOW
35
Interval
1. Insert Interval
You are given an array of non-overlapping intervals where
intervals[i] = [starti, endi] represent the start and the end of the ith
interval, and intervals are sorted in ascending order by start i.
You are also given an interval new interval = [start, end] that
represents the start and end of another interval.
Insert new intervals into intervals such that intervals are still
sorted in ascending order by start i and intervals still do not have
any overlapping intervals (merge overlapping intervals if
necessary). Return intervals after the insertion.
PRACTICE NOW
2. Merge Intervals
Given an array of intervals where intervals[i] = [starti, endi], merge
all overlapping intervals and return an array of the non-
overlapping intervals that cover all the intervals in the input.
PRACTICE NOW
36
3. Non-overlapping Intervals
Given an array of intervals where intervals[i] = [starti, endi], return
the minimum number of intervals you need to remove to make the
rest of the intervals non-overlapping.
PRACTICE NOW
4. Meeting Rooms
Given an array of meeting time intervals consisting of start and
end times[[s1,e1],[s2,e2],...](si< ei), determine if a person could
attend all meetings.
Input: [[0,30],[5,10],[15,20]]
Output: false
Input: [[7,10],[2,4]]
Output: true
PRACTICE NOW
37
5. Meeting Rooms II
Given an array of meeting time intervals consisting of start and
end times[[s1,e1],[s2,e2],...](si< ei).
Input: [[7,10],[2,4]]
Output: 1
PRACTICE NOW
38
Bitwise Operator
1. Sum of Two Integers
Given two integers a and b, return the sum of the two integers
without using the operators + and -.
Input: a = 1, b = 2
Output: 3
Input: a = 2, b = 3
Output: 5
PRACTICE NOW
2. Number of 1 Bit
Write a function that takes the binary representation of an
unsigned integer and returns the number of '1' bits it has (also
known as the Hamming weight).
Input: n = 00000000000000000000000000001011
Output: 3
Explanation: The input binary string
00000000000000000000000000001011 has a total of three '1'
bits.
PRACTICE NOW
39
3. Counting Bits
Given an integer n, return an array of length n + 1 such that for
each i (0 <= i <= n), ans[i] is the number of 1's in the binary
representation of i.
Input: n = 2
Output: [0,1,1]
Explanation:
0 --> 0
1 --> 1
2 --> 10
PRACTICE NOW
4. Missing Number
Given an array nums containing n distinct numbers in the range [0,
n], return the only number in the range that is missing from the
array.
PRACTICE NOW
40
5. Reverse Bits
Reverse bits of a given 32-bit unsigned integer.
Note:
Note that in some languages, such as Java, there is no unsigned
integer type. In this case, both input and output will be given as
a signed integer type. They should not affect your
implementation, as the integer's internal binary representation
is the same, whether it is signed or unsigned.
In Java, the compiler represents the signed integers using 2's
complement notation. Therefore, in Example 2 above, the input
represents the signed integer -3 and the output represents the
signed integer -1073741825.
Input: n = 00000010100101000001111010011100
Output: 964176192 (00111001011110000010100101000000)
Explanation: The input binary string
00000010100101000001111010011100 represents the unsigned
integer 43261596, so return 964176192 whose binary
representation is 00111001011110000010100101000000.
Input: n = 11111111111111111111111111111101
Output: 3221225471 (10111111111111111111111111111111)
Explanation: The input binary string
11111111111111111111111111111101 represents the unsigned
integer 4294967293, so return 3221225471 whose binary
representation is 10111111111111111111111111111111.
PRACTICE NOW
41
+91-7260058093
[email protected]
EXPLORE MORE