From 25ecb737ec3133c13f1244216f5a9fa30cda5e52 Mon Sep 17 00:00:00 2001 From: NicklasXYZ Date: Sun, 17 Sep 2023 14:16:10 +0200 Subject: [PATCH] Update README --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 9cf1578..8fa12a3 100644 --- a/README.md +++ b/README.md @@ -42,8 +42,7 @@ pub fn main() { // Returns Bool: False // Generate all k = 1 combinations of [1, 2] - [1, 2] - |> combinatorics.list_combination(1) + combinatorics.list_combination([1, 2], 1) // Returns: List: Ok([[1], [2]]) }