mirror of
https://github.com/krahets/hello-algo.git
synced 2026-08-19 15:00:58 +00:00
added: header comments
This commit is contained in:
@@ -1,3 +1,9 @@
|
|||||||
|
/*
|
||||||
|
* File: array_hash_map.ts
|
||||||
|
* Created Time: 2022-12-29
|
||||||
|
* Author: Daniel (better.sunjian@gmail.com)
|
||||||
|
*/
|
||||||
|
|
||||||
/* 键值对 Number -> String */
|
/* 键值对 Number -> String */
|
||||||
class Entry {
|
class Entry {
|
||||||
public key: number;
|
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';
|
import ArrayHashMap from './array_hash_map';
|
||||||
|
|
||||||
class HashMap {
|
class HashMap {
|
||||||
|
|||||||
Reference in New Issue
Block a user