We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16c8003 commit 529b15eCopy full SHA for 529b15e
content/4_Gold/PURS.mdx
@@ -87,8 +87,8 @@ They will be covered in [platinum](/plat/seg-ext).
87
```cpp
88
#include <algorithm>
89
#include <iostream>
90
-#include <vector>
91
#include <limits>
+#include <vector>
92
93
using std::cout;
94
using std::endl;
@@ -312,7 +312,7 @@ template <class T> class SumSegmentTree {
312
return sum;
313
}
314
};
315
-//EndCodeSnip
+// EndCodeSnip
316
317
int main() {
318
int arr_len;
@@ -438,6 +438,8 @@ class SumSegmentTree:
438
start //= 2
439
end //= 2
440
return total
441
+
442
443
# EndCodeSnip
444
445
0 commit comments