From e94fdc6662d9cd672a06dffcfbd77786fe0a636f Mon Sep 17 00:00:00 2001 From: Augusto Date: Thu, 27 Jun 2019 17:53:37 +0100 Subject: [PATCH] clarify instructions for the sortedlistmerge exercise --- subjects/sortedlistmerge.en.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subjects/sortedlistmerge.en.md b/subjects/sortedlistmerge.en.md index bb73dd329..0e44d3dc6 100644 --- a/subjects/sortedlistmerge.en.md +++ b/subjects/sortedlistmerge.en.md @@ -2,9 +2,9 @@ ### Instructions -Write a function `SortedListMerge` that mereges two lists, `n1` and `n2`, but it as to join them in ascending order. +Write a function `SortedListMerge` that merges two lists, `n1` and `n2`, but it as to join them in ascending order. -- Tip each list as to be already sorted. +- Assume that `n1` and `n2` are already sorted ### Expected function and structure