From 5a1599d4cbc06332b720092dcbf5b0871f0ebce9 Mon Sep 17 00:00:00 2001 From: Isaac Good Date: Wed, 15 Jan 2025 15:16:06 -0800 Subject: [PATCH] exercises/practice/anagram: add an append with instructions about the order of the return values (#384) --- exercises/practice/anagram/.docs/instructions.append.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/exercises/practice/anagram/.docs/instructions.append.md b/exercises/practice/anagram/.docs/instructions.append.md index 61cb6975..f2faab42 100644 --- a/exercises/practice/anagram/.docs/instructions.append.md +++ b/exercises/practice/anagram/.docs/instructions.append.md @@ -1,3 +1,6 @@ # Instructions append -The instructions above refer to "lists" in the general sense and not to the `list()` data type in R. Note that the tests for this exercise in R expect a character vector i.e. `c()` to be returned and not a `list()`. +You must return the anagrams in the same order as they are listed in the candidate words. + +The instructions above refer to "lists" in the general sense and not to the `list()` data type in R. +Note that the tests for this exercise in R expect a character vector i.e. `c()` to be returned and not a `list()`.