Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 5.92 KB

sliding_window.md

File metadata and controls

31 lines (23 loc) · 5.92 KB

Sliding Window

Principe

Sliding Window ou Fenêtre Glissante est une technique utilisée dans le traitement de données et les algorithmes pour examiner une séquence de données par petits morceaux, généralement de taille fixe. À chaque étape, la fenêtre avance d'un pas fixe à travers la séquence. Cela permet d'analyser les données de manière efficace et en continu

Facile

Label Tags Date
219. Contains Duplicate II Array, Hash Table, Sliding Window 30-03-2024
643. Maximum Average Subarray I Array, Sliding Window 13-03-2024
3095. Shortest Subarray With OR at Least K I Array, Bit Manipulation, Sliding Window 11-05-2024

Moyen

Label Tags Date
3. Longest Substring Without Repeating Characters String, Hash Table, Sliding Window 18-02-2024
713. Subarray Product Less Than K Array, Sliding Window 27-03-2024
1052. Grumpy Bookstore Owner Array, Sliding Window 22-06-2024
1438. Longest Continuous Subarray With Absolute Diff Less Than or Equal to Limit Array, Queue, Sliding Window, Heap (Priority Queue), Ordered Set, Monotonic Queue 23-06-2024
1456. Maximum Number of Vowels in a Substring of Given Length String, Sliding Window 13-03-2024
2958. Length of Longest Subarray With at Most K Frequency Array,Hash Table, Sliding Window 26-06-2024
2962. Count Subarrays Where Max Element Appears at Least K Times Array, Sliding Window 26-06-2024
3097. Shortest Subarray With OR at Least K II Array, Bit Manipulation, Sliding Window 11-05-2024

Difficile

Label Tags Date