From 0be1be0c7e376e52ba0ca72268aaf749b332a58e Mon Sep 17 00:00:00 2001 From: Rahul singh Date: Fri, 7 Oct 2022 15:11:31 +0530 Subject: [PATCH 1/2] Completed Sliding window Problem --- Algorithm/Slidingwindow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Algorithm/Slidingwindow.cpp b/Algorithm/Slidingwindow.cpp index 7697e59..8d72f38 100644 --- a/Algorithm/Slidingwindow.cpp +++ b/Algorithm/Slidingwindow.cpp @@ -51,3 +51,5 @@ int lengthOfLongestSubstring(string s) { string t; cin>>t; cout<<"The length of longest substring is : "< Date: Fri, 7 Oct 2022 15:20:52 +0530 Subject: [PATCH 2/2] Removed Irregularities --- ...st number given threshold => Smallest_Number_Threshold.cpp} | 3 +++ 1 file changed, 3 insertions(+) rename Algorithm/{Smallest number given threshold => Smallest_Number_Threshold.cpp} (97%) diff --git a/Algorithm/Smallest number given threshold b/Algorithm/Smallest_Number_Threshold.cpp similarity index 97% rename from Algorithm/Smallest number given threshold rename to Algorithm/Smallest_Number_Threshold.cpp index c250c0f..97c24d2 100644 --- a/Algorithm/Smallest number given threshold +++ b/Algorithm/Smallest_Number_Threshold.cpp @@ -1,3 +1,6 @@ +#include +using namespace std; + class Solution { public: