Skip to content

Commit 72b3d0e

Browse files
✨ feat: Export knapsackApprox.
1 parent 31670d3 commit 72b3d0e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
import integerValuesKnapsack from './integerValuesKnapsack';
22
import integerWeightsKnapsack from './integerWeightsKnapsack';
3+
import knapsackApprox from './knapsackApprox';
34

45
/* eslint import/no-anonymous-default-export: [2, {"allowObject": true}] */
56
export default {
67
integerValuesKnapsack,
78
integerWeightsKnapsack,
9+
knapsackApprox,
810
};
911

10-
export {integerValuesKnapsack, integerWeightsKnapsack};
12+
export {integerValuesKnapsack, integerWeightsKnapsack, knapsackApprox};

0 commit comments

Comments
 (0)