From 5803fdc57b2dfd28aade6b1803a3c29996d6af31 Mon Sep 17 00:00:00 2001 From: Tiago Collot Date: Tue, 11 Oct 2022 13:06:01 +0100 Subject: [PATCH] docs(concatalternate): removed redundant instruction --- subjects/concatalternate/README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/subjects/concatalternate/README.md b/subjects/concatalternate/README.md index d68d9810..f9361a08 100644 --- a/subjects/concatalternate/README.md +++ b/subjects/concatalternate/README.md @@ -6,7 +6,6 @@ Write a function `ConcatAlternate()` that receives two slices of an `int` as arg - The input slices can be of different lengths. - The new slice should return the elements of the larger slice first and then the elements of the smaller slice. - If the slices are of equal length, the new slice should return the elements of the first slice first and then the elements of the second slice. -- The new slice should be in the same order as the input slices. ### Expected function