Skip to content

Commit 03e2059

Browse files
committed
format
1 parent d32ef9b commit 03e2059

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

tests/library_checker_aizu_tests/data_structures/rmq_linear.test.cpp

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,14 @@ int main() {
2222
a[idx_right_min]);
2323
assert(l <= idx_right_min && idx_right_min < r);
2424
assert(rmq_less.query(l, r - 1) == a[idx_right_min]);
25-
assert(
26-
idx_right_min == rmq_greater.idx(l, r - 1));
25+
assert(idx_right_min == rmq_greater.idx(l, r - 1));
2726
int idx_left_min = rmq_less_equal.idx(l, r - 1);
2827
assert(l == idx_left_min ||
2928
rmq_less_equal.query(l, idx_left_min - 1) >
3029
a[idx_left_min]);
3130
assert(l <= idx_left_min && idx_left_min < r);
32-
assert(idx_left_min ==
33-
rmq_greater_equal.idx(l, r - 1));
31+
assert(
32+
idx_left_min == rmq_greater_equal.idx(l, r - 1));
3433
assert(a[idx_right_min] == a[idx_left_min]);
3534
assert(idx_left_min <= idx_right_min);
3635
cout << a[idx_right_min] << '\n';

0 commit comments

Comments
 (0)