Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions exercises/practice/anagram/.docs/instructions.append.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Instructions Append

## Implementation

The anagrams can be returned in any order.
Original file line number Diff line number Diff line change
@@ -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.
4 changes: 4 additions & 0 deletions exercises/practice/hamming/.docs/instructions.append.md
Original file line number Diff line number Diff line change
@@ -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.
Original file line number Diff line number Diff line change
@@ -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):
Expand Down
Loading