fix: add <set> header to longest increasing subsequence nlogn

This commit is contained in:
realstealthninja
2024-10-01 22:07:16 +05:30
parent a71fa6d02f
commit 8d260bf328

View File

@@ -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) {