Skip to content

Commit dbf8493

Browse files
committed
Committing clang-format changes
1 parent 6786214 commit dbf8493

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Codeforces/2066A.cpp

+5-2
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,14 @@ void solve(void) {
4040

4141
if (p) {
4242
int v = query(p, p % n + 1);
43-
return cout << "! " << "AB"[v > 0] << endl, void();
43+
return cout << "! "
44+
<< "AB"[v > 0] << endl,
45+
void();
4446
}
4547

4648
int v = query(pos[1], pos[n]), w = query(pos[n], pos[1]);
47-
cout << "! " << "AB"[v >= n - 1 && w >= n - 1] << endl;
49+
cout << "! "
50+
<< "AB"[v >= n - 1 && w >= n - 1] << endl;
4851
return;
4952
}
5053

0 commit comments

Comments
 (0)