From 462054e160b23635bf858bf65eca77b369957ed1 Mon Sep 17 00:00:00 2001 From: Isaac Good Date: Mon, 25 May 2026 15:39:08 -0700 Subject: [PATCH] Format all `instructions.append.md` to start with an H1 (required but ignored) and H2 --- exercises/practice/flatten-array/.docs/instructions.append.md | 2 ++ exercises/practice/forth/.docs/instructions.append.md | 2 ++ exercises/practice/queen-attack/.docs/instructions.append.md | 2 ++ exercises/practice/robot-name/.docs/instructions.append.md | 2 ++ exercises/practice/strain/.docs/instructions.append.md | 2 ++ 5 files changed, 10 insertions(+) diff --git a/exercises/practice/flatten-array/.docs/instructions.append.md b/exercises/practice/flatten-array/.docs/instructions.append.md index 39af1c6..841c99f 100644 --- a/exercises/practice/flatten-array/.docs/instructions.append.md +++ b/exercises/practice/flatten-array/.docs/instructions.append.md @@ -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. diff --git a/exercises/practice/forth/.docs/instructions.append.md b/exercises/practice/forth/.docs/instructions.append.md index 9cd2b75..e170258 100644 --- a/exercises/practice/forth/.docs/instructions.append.md +++ b/exercises/practice/forth/.docs/instructions.append.md @@ -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. ``` diff --git a/exercises/practice/queen-attack/.docs/instructions.append.md b/exercises/practice/queen-attack/.docs/instructions.append.md index b308f20..2aef913 100644 --- a/exercises/practice/queen-attack/.docs/instructions.append.md +++ b/exercises/practice/queen-attack/.docs/instructions.append.md @@ -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). diff --git a/exercises/practice/robot-name/.docs/instructions.append.md b/exercises/practice/robot-name/.docs/instructions.append.md index 3baff26..e56613f 100644 --- a/exercises/practice/robot-name/.docs/instructions.append.md +++ b/exercises/practice/robot-name/.docs/instructions.append.md @@ -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. ``` diff --git a/exercises/practice/strain/.docs/instructions.append.md b/exercises/practice/strain/.docs/instructions.append.md index 61614c5..5f4b0fb 100644 --- a/exercises/practice/strain/.docs/instructions.append.md +++ b/exercises/practice/strain/.docs/instructions.append.md @@ -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.