mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-04-05 11:40:46 +08:00
style: remove unused variables (#2946)
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com>
This commit is contained in:
@@ -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));
|
||||
|
||||
Reference in New Issue
Block a user