You are given two strings word1 and word2. In one operation, you can delete exactly one character from either string.…
Browsing: Medium
Given a string s, find the length of the longest palindromic subsequence in s. A subsequence keeps relative order but…
Given two strings text1 and text2, find the length of the longest common substring between them. A substring is a…
Given two strings text1 and text2, find the length of their Longest Common Subsequence (LCS). A subsequence is a sequence…
You are given a list of non-overlapping intervals sorted by start time, and a new interval to insert. Your task…
You are given a list of CPU burst times for processes that all arrive at time 0. Using Shortest Job…
The Job Sequencing Problem asks you to schedule jobs to maximize total profit, given that each job: You need to…
This classic scheduling problem asks you to find the minimum number of railway platforms required so that no train has…
This problem asks: given an array nums where nums[i] is the maximum jump length from index i, find the minimum…
The Jump Game is a popular interview problem and a classic example of applying a Greedy Algorithm. It appears frequently…