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)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy