We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c14f26 commit 4d3acc3Copy full SHA for 4d3acc3
README.md
@@ -10,8 +10,9 @@ See [docs](https://computational-combinatorics.github.io/n-combinations/index.ht
10
11
```js
12
import {combinations} from '@combinatorics/n-combinations';
13
-
14
combinations("ABCD", 2); // AB AC AD BC BD CD
+
15
+import {range} from '@iterable-iterator/range';
16
combinations(range(4), 3); // 012 013 023 123
17
```
18
0 commit comments