chore(i18n,curriculum): processed translations (#44319)

This commit is contained in:
camperbot
2021-11-30 06:06:52 -08:00
committed by GitHub
parent d9971a2ac2
commit f65a7a53bf
17 changed files with 315 additions and 100 deletions

View File

@ -110,8 +110,12 @@ assert(
test.insert(700);
test.insert(32);
test.insert(51);
let result = test.print();
return result.length == 5 ? result[0] == 700 : result[1] == 700;
test.insert(800);
const result = test.print();
const solution = JSON.stringify([null,800,51,700,32,50,100]);
const solutionWithoutNull = JSON.stringify([800,51,700,32,50,100]);
return (result.length == 6) ? (JSON.stringify(result) == solutionWithoutNull) : (JSON.stringify(result) == solution);
})()
);
```