Several bug fixes.

This commit is contained in:
krahets
2023-09-20 01:53:44 +08:00
parent 53d91db10d
commit 8effa58a59
7 changed files with 6 additions and 9 deletions

View File

@ -83,7 +83,6 @@ class ArrayHashMap {
print() {
let pairSet = this.entries();
for (const pair of pairSet) {
if (!pair) continue;
console.info(`${pair.key} -> ${pair.val}`);
}
}