Given a string s, return the minimum number of insertions needed to make s a palindrome. You can insert characters…
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, the goal is to print one actual Longest Common Subsequence (LCS), not just its…
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…
You are given an integer array ratings representing the rating of each child standing in a line. You must give…
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…