Skip to content

Commit ed72d97

Browse files
authored
Format all instructions.append.md to start with an H1 (required but ignored) and H2 (#2844)
1 parent 7eea95f commit ed72d97

16 files changed

Lines changed: 37 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/armstrong-numbers/.docs/instructions.append.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Instructions append
2+
3+
## Implementation
4+
15
<!-- prettier-ignore-start -->
26
~~~~exercism/note
37
Some of the tests might pass a `BigInt` as input.

exercises/practice/book-store/.docs/instructions.append.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# Implementation
1+
# Instructions append
2+
3+
## Implementation
24

35
Define a function - `cost` - that calculates the cost for a given list of books based on defined discounts.
46

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
Using the built-in [Date class](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) and its methods is not allowed.

exercises/practice/collatz-conjecture/.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
If `n` is not a positive integer, stop the program from being executed further and return an error message.
46

57
In JavaScript, this can be done using the `throw` statement.

exercises/practice/linked-list/.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
Your list must also implement the following interface:
46

57
- `delete` (delete the first occurrence of a specified value)
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
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.

exercises/practice/meetup/.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
In JavaScript, the Date object month's index ranges from 0 to 11.
46

57
```javascript

exercises/practice/nucleotide-count/.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
The result should be formatted as a string containing 4 numbers separated by spaces.
46
Each number represents the count for A, C, G and T in this order.
57

exercises/practice/protein-translation/.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
If an invalid character or codon is encountered _during_ translation, it should `throw` an error with the message `Invalid codon`.
46

57
```javascript

0 commit comments

Comments
 (0)