Skip to content

Commit ac6d18c

Browse files
committed
update
1 parent 6387a0f commit ac6d18c

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

tests/library_checker_aizu_tests/data_structures/kd_bit.test.cpp renamed to tests/library_checker_aizu_tests/data_structures/kd_bit_and_tree.test.cpp

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,6 @@ int main() {
77
int n, m;
88
cin >> n >> m;
99
KD_BIT<2> bit(n, m);
10-
//! KD_BIT<2> bit(n, m);
11-
//! bit.update(i, j, 5);
12-
//! // 0 <= i < n
13-
//! // 0 <= j < m
14-
//! bit.query(i1, i2, j1, j2);
15-
//! // 0 <= i1 <= i2 <= n
16-
//! // 0 <= j1 <= j2 <= m
1710
for (int i = 0; i < n; i++) {
1811
for (int j = 0; j < m; j++) {
1912
int c;

0 commit comments

Comments
 (0)