From 9a30f227f24bcbb2b517ad52e79e2e1d8ebfd519 Mon Sep 17 00:00:00 2001 From: MSilva95 <53977751+MSilva95@users.noreply.github.com> Date: Wed, 27 Oct 2021 16:41:21 +0100 Subject: [PATCH] Changing testing to usage --- subjects/issorted/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subjects/issorted/README.md b/subjects/issorted/README.md index 32307313..7cc0097c 100644 --- a/subjects/issorted/README.md +++ b/subjects/issorted/README.md @@ -2,7 +2,7 @@ ### Instructions -Write a function `IsSorted` that returns `true`, if the slice of `int` is sorted, otherwise returns 'false'. +Write a function `IsSorted` that returns `true`, if the slice of `int` is sorted, otherwise returns `false`. The function passed in the parameter returns a positive `int` if `a` (the first argument) is greater than to `b` (the second argument), it returns `0` if they are equal and it returns a negative `int` otherwise. @@ -16,7 +16,7 @@ func IsSorted(f func(a, b int) int, a []int) bool { } ``` -### Testing +### Usage Here is a possible program to test your function (without `f`):