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