shreyansh

Templates and Concepts Problems

  1. Acquire and Release Strategy

    Pepcoding Video Explaination

  2. Binary Search Template

    Suppose we have a search space. It could be an array, a range, etc. Usually it's sorted in ascending order.

  3. Core Concept: Monotonicity

    Monotonicity in the context of binary search means that the function or condition we are interested in exhibits a consis

  4. Pattern + Template

    sum = 7, l = 0, r = k - 1

  5. Template to solve substring problems

    import java.util.HashMap;