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

You must return the anagrams in the same order as they are listed in the candidate words.
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Instructions append

## Implementation

If an invalid character or codon is encountered _during_ translation, it should `throw` an error with the message `Invalid codon`.

```javascript
Expand Down
6 changes: 5 additions & 1 deletion exercises/practice/queen-attack/.docs/instructions.append.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
# Instructions append

## Implementation

A queen must be placed on a valid position on the board.
Two queens cannot share the same position.

If a position has not been given, the queens are at their [default starting positions](https://en.wikipedia.org/wiki/Rules_of_chess#Initial_setup). That's the bottom row (1) for the white queen and the top row (8) for the black queen. Both queens start in the fourth column (d).
If a position has not been given, the queens are at their [default starting positions](https://en.wikipedia.org/wiki/Rules_of_chess#Initial_setup).
That's the bottom row (1) for the white queen and the top row (8) for the black queen.
Both queens start in the fourth column (d).

```text
a b c d e f g h
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Instructions append

Although the color names are capitalised in the description, the function colorCode will always be called with the lowercase equivalent, e.g brown instead of Brown
## Implementation

Although the color names are capitalised in the description, the function colorCode will always be called with the lowercase equivalent, e.g brown instead of Brown.