ml-combinations
Advanced tools
Comparing version 1.0.0 to 1.0.1
@@ -0,1 +1,6 @@ | ||
<a name="1.0.1"></a> | ||
## [1.0.1](https://github.com/mljs/combinations/compare/v1.0.0...v1.0.1) (2016-07-21) | ||
<a name="1.0.0"></a> | ||
@@ -2,0 +7,0 @@ # 1.0.0 (2016-07-20) |
{ | ||
"name": "ml-combinations", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Generate all possible unordered samples of size m, without replacement, from a set of n objects", | ||
@@ -5,0 +5,0 @@ "main": "./src/index.js", |
@@ -23,3 +23,3 @@ 'use strict'; | ||
for (i = 0; i < M; i++) { | ||
c[i] = N - i - 1; | ||
c[i] = N - M + i; | ||
} | ||
@@ -26,0 +26,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6314