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

@@ -222,7 +222,7 @@ using linear_probing::totalSize;
* @returns 0 on success
*/
int main() {
int cmd = 0, hash = 0, key = 0;
int cmd = 0, key = 0;
std::cout << "Enter the initial size of Hash Table. = ";
std::cin >> totalSize;
table = std::vector<Entry>(totalSize);