1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 17:56:55 +02:00
LeetCode/rs/longest-increasing-subsequence.rs

19 lines
397 B
Rust
Raw Normal View History

use std::cmp::max;
impl Solution {
pub fn length_of_lis(nums: Vec<i32>) -> i32 {
let mut dp = Vec::<i32>::new();
dp.resize(nums.len(), 1);
for i in 1..nums.len() {
for j in 0..i {
if nums[i] > nums[j] {
dp[i] = max(dp[i], dp[j] + 1);
}
}
}
*dp.iter().max().unwrap()
}
}