From 058b0bf75e2764d34eafad2a4556f8dfc5dc900d Mon Sep 17 00:00:00 2001 From: Lluis Toyos Date: Wed, 22 Jul 2026 14:54:06 +0200 Subject: [PATCH] Add Elixir-specific note to Hamming instructions Clarify that the exercise is meant to reinforce Enum usage, while noting it can also be solved with other methods. Co-Authored-By: Claude Sonnet 5 --- exercises/practice/hamming/.docs/instructions.append.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 exercises/practice/hamming/.docs/instructions.append.md diff --git a/exercises/practice/hamming/.docs/instructions.append.md b/exercises/practice/hamming/.docs/instructions.append.md new file mode 100644 index 000000000..aeecfa282 --- /dev/null +++ b/exercises/practice/hamming/.docs/instructions.append.md @@ -0,0 +1,5 @@ +# Instructions append + +## Elixir-specific changes + +This exercise is intended to reinforce the use of `Enum` functions, but it can also be solved with other methods.