chore(i18n,learn): processed translations (#45001)

This commit is contained in:
camperbot
2022-02-04 00:46:32 +05:30
committed by GitHub
parent 0d36c35207
commit f38d19132d
32 changed files with 374 additions and 354 deletions

View File

@ -128,14 +128,15 @@ assert(
if (typeof test.remove !== 'function') {
return false;
}
test.add(-1);
test.add(1);
test.add(4);
test.add(3);
test.add(7);
test.add(16);
test.remove(16);
test.remove(7);
test.add(2);
test.add(6);
test.add(8);
test.remove(6);
test.remove(3);
return test.inorder().join('') == '-1';
return test.inorder().join('') == '1248';
})()
);
```