Added sliding window

This commit is contained in:
2024-10-30 17:49:58 -04:00
parent 65996765d1
commit c2bdd92ec4
5 changed files with 102 additions and 3 deletions

View File

@@ -4,3 +4,5 @@
bool IsUnique(const char* s, int len);
bool CheckPermutation(const char* s1, const char* s2, size_t s1_len, size_t s2_len);
int sliding_window_max_sum(int* array, int len, int k_len);
int sliding_window_shortest_subarray(int* array,int len, int x);