pyassistant

Longest Increasing Subsequence

Given a list of integers, write a function to find the longest increasing subsequence present in the list. Return the length of the longest increasing subsequence.

Example:

Input:
[10, 22, 9, 33, 21, 50, 41, 60, 80]
Output:
6

Make sure you return your solution, don't print!

AI

Bot

Trying to solve my challenge? Ask if you must, or press the purple button so I can analyze your code.