From 676dbce62b437393da6dc61b17ddc16a48fd6718 Mon Sep 17 00:00:00 2001 From: NicklasXYZ Date: Sun, 17 Sep 2023 14:15:35 +0200 Subject: [PATCH] Update README --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 138339f..9cf1578 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ pub fn main() { piecewise.arg_minimum([10, 3, 50, 20, 3], float.compare) // Returns List: Ok([1, 4]) - // Determine if a number if fractional: + // Determine if a number is fractional tests.is_fractional(0.3333) // Returns Bool: True @@ -44,7 +44,6 @@ pub fn main() { // Generate all k = 1 combinations of [1, 2] [1, 2] |> combinatorics.list_combination(1) - |> should.equal(Ok([[1, 2]])) // Returns: List: Ok([[1], [2]]) }