style: remove unused variables (#2946)

Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com>
This commit is contained in:
Piotr Idzik
2025-08-14 06:27:18 +02:00
committed by GitHub
parent 3f0409d7cc
commit d4962c3032
12 changed files with 11 additions and 15 deletions

View File

@@ -29,7 +29,7 @@ bool mycmp(query x, query y) {
}
int main() {
int n, t, i, j, k = 0;
int n, t, i;
scanf("%d", &n);
for (i = 0; i < n; i++) scanf("%d", &a[i]);
bucket_size = ceil(sqrt(n));