Add Elixir-specific note to Hamming instructions - #1647
Conversation
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 <noreply@anthropic.com>
|
Thank you for contributing to Based on the files changed in this PR, it would be good to pay attention to the following details when reviewing the PR:
Automated comment created by PR Commenter 🤖. |
|
Hi! What makes you believe that Hamming must be solved using the |
|
@tolbier Are you still working on this? |
|
I'm closing this PR due to the lack of contact from the author. Seeing how the commit was authored with Claude, I am assuming the human PR author might not even be aware that this PR got submitted. |
Summary
instructions.append.mdfor the Hamming exercise clarifying that it's intended to reinforceEnumusage, while noting it can also be solved with other methods.Motivation
While solving this exercise, I started with an
Enum-based approach and later rewrote it using recursion/pattern matching, realizing the exercise's intent (practicingEnum) wasn't explicit anywhere in the instructions.Test plan