mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-02-08 21:16:26 +08:00
fix: add <set> header to longest increasing subsequence nlogn
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
// tested on : https://cses.fi/problemset/task/1145/
|
||||
|
||||
#include <iostream>
|
||||
#include <set>
|
||||
|
||||
using namespace std;
|
||||
int LIS(int arr[], int n) {
|
||||
|
||||
Reference in New Issue
Block a user