8000 fixup! Rewrite ids generation without array · HowProgrammingWorks/Generator@c203357 · GitHub
[go: up one dir, main page]

Skip to content

Commit c203357

Browse files
fixup! Rewrite ids generation without array
1 parent 3dae8c9 commit c203357

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Exercises/1-ids.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const ids = function* () {
1111
let value = base;
1212
for (let k = BIG_ZERO; k <= Math.log2(Number(j)); k++) {
1313
if (j / (BIG_ONE << k) & BIG_ONE) {
14-
value |= BIG_ONE << (k << BIG_ONE) + BIG_ONE;
14+
value |= BIG_ONE << -~(k << BIG_ONE);
1515
}
1616
}
1717
yield value.toString(2);

0 commit comments

Comments
 (0)
0