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,3 +1,7 @@
# Instructions append

## Implementation

<!-- prettier-ignore-start -->
~~~~exercism/note
Some of the tests might pass a `BigInt` as input.
Expand Down
4 changes: 3 additions & 1 deletion exercises/practice/book-store/.docs/instructions.append.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Implementation
# Instructions append

## Implementation

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

Expand Down
2 changes: 2 additions & 0 deletions exercises/practice/clock/.docs/instructions.append.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Instructions append

## Implementation

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.
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Instructions append

## Implementation

If `n` is not a positive integer, stop the program from being executed further and return an error message.

In JavaScript, this can be done using the `throw` statement.
Expand Down
2 changes: 2 additions & 0 deletions exercises/practice/linked-list/.docs/instructions.append.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Instructions append

## Implementation

Your list must also implement the following interface:

- `delete` (delete the first occurrence of a specified value)
Expand Down
2 changes: 2 additions & 0 deletions exercises/practice/list-ops/.docs/instructions.append.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Instructions append

## Implementation

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.
2 changes: 2 additions & 0 deletions exercises/practice/meetup/.docs/instructions.append.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Instructions append

## Implementation

In JavaScript, the Date object month's index ranges from 0 to 11.

```javascript
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Instructions append

## Implementation

The result should be formatted as a string containing 4 numbers separated by spaces.
Each number represents the count for A, C, G and T in this order.

Expand Down
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
2 changes: 2 additions & 0 deletions exercises/practice/proverb/.docs/instructions.append.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Instructions append

## Implementation

If the final item in the list is an `object` instead of a `string`, it will hold a qualifier that modifies the final line in the proverb.

```javascript
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Instructions append

## Implementation

By default, only `sum` is given to the `triplets` function, but it may optionally also receive `minFactor` and/or `maxFactor`. When these are given, make sure _each_ factor of the triplet is at least `minFactor` and at most `maxFactor`.

<!-- prettier-ignore-start -->
Expand Down
2 changes: 2 additions & 0 deletions exercises/practice/queen-attack/.docs/instructions.append.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Instructions append

## Implementation

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

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Instructions append

## 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
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Instructions append

## Implementation

<!-- prettier-ignore-start -->
~~~exercism/advanced
If you solve this using the CLI, there are test cases that require you to deal with complex characters.
Expand Down
2 changes: 2 additions & 0 deletions exercises/practice/square-root/.docs/instructions.append.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Instructions append

## Implementation

The idea is not to use the built-in javascript functions such as `Math.sqrt(x)`, `x ** 0.5` or `x ** (1/2)`, it's to build your own.