From 4870dc34a8fad750fc8fda37ff7b10aaf6e6eff8 Mon Sep 17 00:00:00 2001 From: Tiago Collot Date: Tue, 8 Nov 2022 14:47:54 +0000 Subject: [PATCH] docs(revconcatalternate): fix instructions --- subjects/revconcatalternate/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subjects/revconcatalternate/README.md b/subjects/revconcatalternate/README.md index 43df4313f..91cd9165e 100644 --- a/subjects/revconcatalternate/README.md +++ b/subjects/revconcatalternate/README.md @@ -4,8 +4,8 @@ Write a function `RevConcatAlternate()` that receives two slices of `int` as arguments and returns a new slice with alternated values of each slice in reverse order. - The input slices can have different lengths. -- The new slice should contain 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 contain the elements of the first slice first and then the elements of the second slice. +- The new slice should start with an element of the largest slice first. +- If the slices are of equal length, the new slice should start with an element of the first slice. ### Expected function