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/flatten-array/.docs/instructions.append.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Instructions append

## Implementation

As Uiua does not have `null`, we've replaced them with `∞` (`infinity`) values.
You should therefore flatten the array _and_ remove the `∞` values.
2 changes: 2 additions & 0 deletions exercises/practice/forth/.docs/instructions.append.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Instructions append

## Implementation

```exercism/note
As Uiua does _not_ support putting functions on the stack, you won't be implementing user-defined words.
```
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,3 +1,5 @@
# Instructions append

## Implementation

This exercises uses [modules as functions](https://www.uiua.org/tutorial/modules#modules-as-functions) for a nice way to group functions that work on the same type of data (queens on a chessboard in this case).
2 changes: 2 additions & 0 deletions exercises/practice/robot-name/.docs/instructions.append.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Instructions append

## Implementation

```exercism/note
As Uiua does **not** have mutable state, the exercise only expects you to generate random names.
```
2 changes: 2 additions & 0 deletions exercises/practice/strain/.docs/instructions.append.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Instructions append

## Implementation

This exercise requires you to call a function that is passed in as an argument.
In Uiua, you can do this via [macros](https://www.uiua.org/tutorial/macros), which is how this exercise expects you to solve it.

Expand Down