Introduced google test for L33

This commit is contained in:
2025-11-28 06:05:40 +09:00
parent b42db10e14
commit c97093fe46
5 changed files with 139 additions and 7 deletions

View File

@@ -20,8 +20,7 @@ int main(int argc, char *argv[]) {
vector<ll> cnt(n + 1, 0);
for (ll i = 0; i < m; ++i) {
ll s = rnd.next(1uLL, n);
if(cnt[s] == n-1)
{
if (cnt[s] == n - 1) {
i--;
continue;
}