Skip to content

Commit d71270e

Browse files
authored
Format all instructions.append.md to start with an H1 (required but ignored) and H2 (#3135)
* Format all `instructions.append.md` to start with an H1 (required but ignored) and H2 * Revert deprecated diffie-hellman
1 parent c20a4e0 commit d71270e

19 files changed

Lines changed: 40 additions & 5 deletions

File tree

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

3+
## Implementation
4+
35
Please notice that the `%` operator is not equivalent to the one described in the problem description
46
([see Wikipedia entry for Modulo operation](https://en.wikipedia.org/wiki/Modulo_operation)).
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.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# Instructions append
22

3+
## Implementation
4+
35
For more help on how to solve this exercise, please refer to the tutorial provided as part of the hello world exercise:
46
[instructions.append.md](https://github.com/exercism/java/blob/main/exercises/practice/hello-world/.docs/instructions.append.md#tutorial)

exercises/practice/bank-account/.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
This exercise introduces [concurrency][oracle-docs-concurrency].
46
To pass the last test you might find the [`synchronized` keyword or locks][oracle-docs-synchronized] useful.
57

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 order to satisfy the requirement that two clocks are considered equal just when they are set to the same time, you will need to override the [`equals`](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#equals(java.lang.Object)) and [`hashcode`](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#hashCode) methods in your `Clock` class.
46

57
For more information on how to override these methods, see [this JavaWorld article](https://web.archive.org/web/20170528222153/http://www.javaworld.com/article/2072762/java-app-dev/object-equality.html).

exercises/practice/dot-dsl/.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 graph is represented in the DSL by the `Graph` class.
46
The implementation for the nodes and edges (represented by the `Node` and `Edge` classes respectively) are provided.
57

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
For the Java track, the input will be provided as a `List` instead of an array, and the output should also be a `List`.

exercises/practice/hamming/.docs/instructions.append.md

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

35
This is the first exercise with tests that require you to throw an [`Exception`][exception-docs].
46
`Exception`s are typically thrown to indicate that a program has encountered an unexpected input or state.

exercises/practice/hangman/.docs/instructions.append.md

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

35
One main aspect of Functional Programming is to have side-effect free functions, not to have to wonder that hidden objects a function has changed.
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
Although we're dealing with bytes of data, the inputs and outputs are `List<Integer>` (instead of `byte[]`) to avoid the need to cast or convert negative values for bytes 128 to 255.

0 commit comments

Comments
 (0)