From 8daa584deed7051fe90b8d93b995e49325ac63a9 Mon Sep 17 00:00:00 2001 From: Isaac Good Date: Mon, 25 May 2026 13:52:43 -0700 Subject: [PATCH] Format all `instructions.append.md` to start with an H1 (required but ignored) and H2 --- exercises/practice/anagram/.docs/instructions.append.md | 2 ++ .../practice/complex-numbers/.docs/instructions.append.md | 2 ++ exercises/practice/hamming/.docs/instructions.append.md | 4 ++++ .../practice/robot-simulator/.docs/instructions.append.md | 2 ++ 4 files changed, 10 insertions(+) diff --git a/exercises/practice/anagram/.docs/instructions.append.md b/exercises/practice/anagram/.docs/instructions.append.md index 8d71a920..273ca3cb 100644 --- a/exercises/practice/anagram/.docs/instructions.append.md +++ b/exercises/practice/anagram/.docs/instructions.append.md @@ -1,3 +1,5 @@ # Instructions Append +## Implementation + The anagrams can be returned in any order. diff --git a/exercises/practice/complex-numbers/.docs/instructions.append.md b/exercises/practice/complex-numbers/.docs/instructions.append.md index 1f221d62..cb6699fe 100644 --- a/exercises/practice/complex-numbers/.docs/instructions.append.md +++ b/exercises/practice/complex-numbers/.docs/instructions.append.md @@ -1,4 +1,6 @@ # Instructions append +## Implementation + You also need to implement a `equal/2` function. For this you can consider two numbers as equal, when the difference of each component is less than 0.005. diff --git a/exercises/practice/hamming/.docs/instructions.append.md b/exercises/practice/hamming/.docs/instructions.append.md index 58c49ec1..e50b4e99 100644 --- a/exercises/practice/hamming/.docs/instructions.append.md +++ b/exercises/practice/hamming/.docs/instructions.append.md @@ -1 +1,5 @@ +# Instructions append + +## Implementation + If the sequences are not of equal length, return a tuple of `{error, badarg}`. Otherwise, return only the integer. diff --git a/exercises/practice/robot-simulator/.docs/instructions.append.md b/exercises/practice/robot-simulator/.docs/instructions.append.md index bcda7f78..c7d8e12b 100644 --- a/exercises/practice/robot-simulator/.docs/instructions.append.md +++ b/exercises/practice/robot-simulator/.docs/instructions.append.md @@ -1,5 +1,7 @@ # Instructions append +## Implementation + This exercise does require some kind of global state for your robot. In erlang this can be done in various ways (starting with most idiomatic one):