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.
8 changes: 6 additions & 2 deletions exercises/practice/flatten-array/.docs/instructions.append.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Hints
# Instructions append

You can think of this data structure as a [`Rose Tree`](https://en.wikipedia.org/wiki/Rose_tree). You are given a data type `'a tree` that represents this data structure.
## Hints

You can think of this data structure as a [`Rose Tree`](https://en.wikipedia.org/wiki/Rose_tree).
You are given a data type `'a tree` that represents this data structure.

**Notes**

- For this exercise `Empty` represents `null`
- The nested list is represented by `List [...]`.
- The input example is represented by `List [Elem 1, List [Elem 2, Elem 3, Empty, Elem 4], List [Empty], Elem 5]`
2 changes: 2 additions & 0 deletions exercises/practice/grade-school/.docs/instructions.append.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Instructions append

## Implementation

To complete this exercise you need to implement the struct by defining the data type `school` and implementing the functions:

- newSchool
Expand Down
4 changes: 3 additions & 1 deletion exercises/practice/nth-prime/.docs/instructions.append.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Hints
# Instructions append

## Hints

If the argument is less than `1`, return [`NONE`](https://smlfamily.github.io/Basis/option.html#SIG:OPTION.option:TY:SPEC).

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

## Implementation

To complete this exercise you need to define the data type `stopwatch`, and implement the functions:

- newStopwatch
Expand All @@ -13,5 +15,4 @@ To complete this exercise you need to define the data type `stopwatch`, and impl
- total
- previousLaps

You will find a dummy type definition already in place,
but it is up to you to define the functions and create a meaningful data type.
You will find a dummy type definition already in place, but it is up to you to define the functions and create a meaningful data type.