-
Cycle
- Lille, France
-
06:13
(UTC +01:00)
Pinned Loading
-
-
life-workers
life-workers Public archiveThe Game of Life using Web Workers, SharedArrayBuffer, Atomics, and OffscreenCanvas
JavaScript 1
-
JavaScript combination generators
JavaScript combination generators 1// abc -> [], a, b, c, ab, ac, bc, abc
2function* powerSet (l) {
3for (let i of Array(1 << l.length).keys())
4yield l.filter((_, j) => i & 1 << j)
5}
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.