Remove technical documentation and testing files; add ESLint configuration and CI scripts for build and deployment processes.

This commit is contained in:
2025-11-22 21:00:08 -05:00
parent aeed9a5c67
commit d2d654dfda
15 changed files with 181 additions and 874 deletions

View File

@@ -31,7 +31,7 @@ export class HashMap<K, V> implements IHashMap<K, V>, Iterable<[K, V]> {
constructor(
initialCapacity: number = 16,
loadFactorThreshold: number = 0.75,
hashFunction?: IHashFunction<K>
hashFunction?: IHashFunction<K>,
) {
if (initialCapacity <= 0) {
throw new Error("Initial capacity must be positive");
@@ -276,4 +276,3 @@ export class HashMap<K, V> implements IHashMap<K, V>, Iterable<[K, V]> {
}
}
}