feat(codeforces): 1017

This commit is contained in:
Barrett Ruth 2025-04-13 16:31:32 -04:00
parent 375a673932
commit f366180f50
31 changed files with 857 additions and 1 deletions

View file

@ -45,7 +45,7 @@ void solve() {
if (a[l] == 0) {
continue;
}
// NOTE: while loop instead of maintaing invariant
// NOTE: i wrote a while loop instead of maintaing invariant
++r;
while (r < n && a[r] == 0) {
++r;