Skip to content

Commit fa8c884

Browse files
committed
format
1 parent d794577 commit fa8c884

File tree

1 file changed

+1
-3
lines changed
  • library/data_structures_[l,r)

1 file changed

+1
-3
lines changed

library/data_structures_[l,r)/bit.hpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ struct BIT {
1414
for (; r > 0; r &= r - 1) ret += s[r - 1];
1515
return ret;
1616
}
17-
ll query(int l, int r) {
18-
return query(r) - query(l);
19-
}
17+
ll query(int l, int r) { return query(r) - query(l); }
2018
#include "bit_uncommon/walk.hpp"
2119
};

0 commit comments

Comments
 (0)