Create 307. Range Sum Query - Mutable.md

This commit is contained in:
ShusenTang 2019-11-18 21:12:42 +08:00 committed by GitHub
parent 4898bb6ba0
commit 960e0d8bd0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,3 @@
# [307. Range Sum Query - Mutable](https://leetcode.com/problems/range-sum-query-mutable/)
此题可以用树状数组和线段树解决,具体题解见我的博客:[Range Sum Query - Mutable (区间查询)](https://tangshusen.me/2019/11/17/range-sum-query-mutable/)