mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-26 11:46:29 +08:00
added: header comments
This commit is contained in:
parent
bd21fd8be9
commit
045df58472
2 changed files with 12 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
/*
|
||||
* File: array_hash_map.ts
|
||||
* Created Time: 2022-12-29
|
||||
* Author: Daniel (better.sunjian@gmail.com)
|
||||
*/
|
||||
|
||||
/* 键值对 Number -> String */
|
||||
class Entry {
|
||||
public key: number;
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
/*
|
||||
* File: hash_map.ts
|
||||
* Created Time: 2022-12-29
|
||||
* Author: Daniel (better.sunjian@gmail.com)
|
||||
*/
|
||||
|
||||
import ArrayHashMap from './array_hash_map';
|
||||
|
||||
class HashMap {
|
||||
|
|
Loading…
Reference in a new issue