Problem 9. Print Maximum Increasing Subsequence JS

Здравейте ,възможно ли е да дадете примерно решение на тази задача Alpha 32 JS - Preparation.Прикачвам условието за улеснение:

Problem 9. Print Maximum Increasing Subsequence
Write a program that prints the maximum length increasing subsequence to the console. If two or more are of the same length, print the last one

Examples:

Input Output
6 7 3 8 1 9 4 5 6 2 1 3 4 5 6
Input Output
1 2 3 4 3 1 9 4 5 6 11 4 5 6 11

Здравей,
ето едно примерно решение https://pastebin.com/h2uPFfL0 .

1 Like