Преглед изворни кода

Fixes bad has implementation

main
Eric Amodio пре 4 година
родитељ
комит
cfca480725
1 измењених фајлова са 2 додато и 1 уклоњено
  1. +2
    -1
      src/system/searchTree.ts

+ 2
- 1
src/system/searchTree.ts Прегледај датотеку

@ -200,7 +200,8 @@ export class TernarySearchTree {
}
has(key: K): boolean {
return Boolean(this._getNode(key));
const node = this._getNode(key);
return !(node?.value === undefined && node?.mid === undefined);
}
delete(key: K): void {

Loading…
Откажи
Сачувај