diff --git a/dsa-solutions/lc-solutions/3100-3199/3161-Block Placement Queries.md b/dsa-solutions/lc-solutions/3100-3199/3161-Block Placement Queries.md index 661f6803d..96ca7b94d 100644 --- a/dsa-solutions/lc-solutions/3100-3199/3161-Block Placement Queries.md +++ b/dsa-solutions/lc-solutions/3100-3199/3161-Block Placement Queries.md @@ -12,7 +12,7 @@ tags: description: "This document provides solutions to a problem using the Fenwick Tree (Binary Indexed Tree) data structure, implemented in C++, Java, and Python." --- -## Problem +## Problem The problem requires efficiently processing a series of queries that involve updating and retrieving maximum values within a range. The solution uses the Fenwick Tree (Binary Indexed Tree) data structure to achieve this efficiently. ## Solution