Longest Common Subsequence Problem Statement
Given two strings STR1
and STR2
, determine the length of their longest common subsequence.
A subsequence is a sequence that can be derived from another sequence by deleting some or no elements without changing the order of the remaining elements. A common subsequence is one that appears in both strings.
Input:
The first line contains an integer T
denoting the number of test cases. Each test case consists of two space-separated strings STR1
and STR2
.
Output:
Print the length of the longest common subsequence for each test case on a separate line.
Example:
Input:
STR1 = "abcde", STR2 = "ace"
Output:
3
Explanation:
The longest common subsequence is "ace"
, which has a length of 3.
Constraints:
1 <= T <= 50
1 <= |STR1| <= 10^2
1 <= |STR2| <= 10^2
- Time Limit: 1 sec
Note:
You are required to implement the function. Printing of results will be handled elsewhere.

AnswerBot
4mo
The problem involves finding the length of the longest common subsequence between two given strings.
Use dynamic programming to solve this problem efficiently.
Create a 2D array to store the lengths of ...read more
Help your peers!
Add answer anonymously...
Deloitte Software Developer interview questions & answers
A Software Developer was asked 2mo agoQ. How many ways can you define a bean using the Spring Boot Application annotation...read more
A Software Developer was asked 6mo agoQ. What type of work does the Deloitte company engage in?
A Software Developer was asked 7mo agoQ. What is MVC and explain its pattern?
Popular interview questions of Software Developer
A Software Developer was asked 6mo agoQ1. What is MVC and explain its pattern?
A Software Developer was asked 7mo agoQ2. Given a string, determine whether it is a palindrome, considering only alphanume...read more
A Software Developer was asked 7mo agoQ3. Given two strings s and t, return true if t is an anagram of s, and false otherw...read more
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

