Longest Increasing Subsequence Coding Question-Asked in Google Interviews

Placewit
2 min readJan 12, 2022

--

Problem Statement :

Given an array of integers, find the length of the longest (strictly) increasing subsequence from the given array.

Input Format:

The first line of the input contains an integer ’N’, denoting the total number of elements of the array.

The second line of the input contains the array elements of array A.

Output Format:

The output consists of one line containing the length of the largest increasing subsequence.

Given:

6
5 8 3 7 9 1

Output:

3

Explanation of given Test Cases :

Longest increasing subsequence
5 7 9, with length 3.

Approach:

Create an array of N length where ith value will be the last value for a subsequence of length (i+1).

Iterate over the array, use binary search to find best indexes to place new elements in the dp array.

Code:

Thanks for Reading

Placewit grows the best engineers by providing an interactive classroom experience and by helping them develop their skills and get placed in amazing companies.

Learn more at Placewit. Follow us on Instagram and Facebook for daily learning.

--

--

Placewit
Placewit

Written by Placewit

Upskilling students for tech placements!

Responses (1)