From 8d260bf328dab250b6b82eadeb3cd1520ea6c203 Mon Sep 17 00:00:00 2001 From: realstealthninja <68815218+realstealthninja@users.noreply.github.com> Date: Tue, 1 Oct 2024 22:07:16 +0530 Subject: [PATCH] fix: add header to longest increasing subsequence nlogn --- dynamic_programming/longest_increasing_subsequence_nlogn.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/dynamic_programming/longest_increasing_subsequence_nlogn.cpp b/dynamic_programming/longest_increasing_subsequence_nlogn.cpp index 5bc72345c..5c4ecfc49 100644 --- a/dynamic_programming/longest_increasing_subsequence_nlogn.cpp +++ b/dynamic_programming/longest_increasing_subsequence_nlogn.cpp @@ -3,6 +3,7 @@ // tested on : https://cses.fi/problemset/task/1145/ #include +#include using namespace std; int LIS(int arr[], int n) {