Technical Blog

Recent posts

Subarray With Given Sum in Java

4 minute read

DSA Java

Subarray With Given Sum is a good example of turning a small-looking problem into a precise invariant. The Java implementation below captures the core idea, ...

Subarray Sum Equals K in Java

5 minute read

DSA Java

Subarray Sum Equals K is a good example of turning a small-looking problem into a precise invariant. The Java implementation below captures the core idea, so...

Sliding Window Maximum in Java

4 minute read

DSA Java

Sliding Window Maximum is a good example of turning a small-looking problem into a precise invariant. The Java implementation below captures the core idea, s...

Minimum Window Substring in Java

5 minute read

DSA Java

Minimum Window Substring is a good example of turning a small-looking problem into a precise invariant. The Java implementation below captures the core idea,...