Sliding Window Technique
## Introduction
The sliding window technique is used for reducing some redundant calculations that slow down the program. like it can reduce time complexity from O(n^2) to O(n) with O(1) space complexity.
Why use it?
First of all it reduce time copl...
iamprogrammer.hashnode.dev3 min read