Skip to content

Commit 8d260bf

Browse files
fix: add <set> header to longest increasing subsequence nlogn
1 parent a71fa6d commit 8d260bf

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

dynamic_programming/longest_increasing_subsequence_nlogn.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
// tested on : https://cses.fi/problemset/task/1145/
44

55
#include <iostream>
6+
#include <set>
67

78
using namespace std;
89
int LIS(int arr[], int n) {

0 commit comments

Comments
 (0)