mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-05-03 07:03:58 +08:00
style: remove unused variables (#2946)
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com>
This commit is contained in:
@@ -244,7 +244,7 @@ using quadratic_probing::totalSize;
|
||||
* @returns None
|
||||
*/
|
||||
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);
|
||||
|
||||
Reference in New Issue
Block a user