Removed hash_map class

This commit is contained in:
danielsss 2022-12-26 11:14:59 +11:00
parent ae0abb6d0c
commit 5724719485
No known key found for this signature in database
GPG Key ID: 2A5967D8F31A22D2

View File

@ -4,8 +4,7 @@
* Author: Daniel (better.sunjian@gmail.com)
*/
class hash_map {
constructor() {
/* Driver Code */
/* 初始化哈希表 */
const map = new Map<number, string>();
@ -43,7 +42,3 @@ class hash_map {
for (const v of map.values()) {
console.info(v);
}
}
}
export {};