Syllabus of MTE
Syllabus of MTE
Syllabus of MTE
18 Merge two sorted linked lists into one sorted list. Remove N-th Lecture
Node from End of List: Remove the n-th node from the end of a
singly linked list.
19 Palindrome Number: Check if an integer is a palindrome Practical
without converting it to a string.
Longest Common Prefix: Find the longest common prefix
among a list of strings.
20 Intersection of Two Linked Lists: Find the node where two Practical
singly linked lists intersect. Longest Palindromic Substring:
Find the longest palindromic substring in a given string.
21 Implement two stacks in a single array. Next Greater Element: Lecture
Find the next greater element for each element in an array.
22
23 Sliding Window Maximum: Use a deque to find the maximum Lecture
in every sliding window of size k.
24 Find the largest rectangle that can be formed in a histogram. Practical
25
26 Permutations: Generate all permutations of a given array or Lecture
string. Subsets: Generate all subsets of a given array.
27 Combination Sum: Find all unique combinations of numbers Lecture
that sum to a target.
Find the Element with Maximum Frequency: Find the element
that appears most frequently in an array.
28 Median of Two Sorted Arrays: Find the median of two sorted Lecture
arrays. Kth Smallest Element in a Sorted Matrix: Find the k-th
smallest element from the last in a sorted matrix.
29 Permutations: Generate all permutations of a given array or Practical
string. Subsets: Generate all subsets of a given array. Top K
Frequent Elements: Use a priority queue to find the k most
frequent elements.
30 Find the Element with Maximum Frequency: Find the element Practical
that appears most frequently in an array.
Median of Two Sorted Arrays: Find the median of two sorted
arrays using binary search.
31 Two Sum: Find two numbers in an array that add up to a target Lecture
using hashing.
32 Subarray Sum Equals K: Find the number of subarrays with a Lecture
sum equal to k using hashing. Top K Frequent Elements: Find
the k-most frequent elements in an array.