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