Skip to content

Commit 0f37d5a

Browse files
committed
Format all instructions.append.md to start with an H1 (required but ignored) and H2
1 parent 3c3b7d4 commit 0f37d5a

3 files changed

Lines changed: 9 additions & 1 deletion

File tree

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
# Instructions Append
22

3+
## Implementation
4+
35
The anagrams can be returned in any order.

exercises/practice/list-ops/.docs/instructions.append.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Instructions append
22

3+
## Implementation
4+
35
Using core language features to build and deconstruct arrays via destructuring, and using the array literal `[]` are allowed, but no functions from the `Array.prototype` should be used.
46

57
In order to be able to test your solution, ensure `forEach` is implemented.

exercises/practice/queen-attack/.docs/instructions.append.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
# Instructions append
22

3+
## Implementation
4+
35
A queen must be placed on a valid position on the board.
46
Two queens cannot share the same position.
57

6-
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).
8+
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).
9+
That's the bottom row (1) for the white queen and the top row (8) for the black queen.
10+
Both queens start in the fourth column (d).
711

812
```text
913
a b c d e f g h

0 commit comments

Comments
 (0)