diff --git a/subjects/sortedlistmerge.en.md b/subjects/sortedlistmerge.en.md index bb73dd32..0e44d3dc 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