From 568bab7a920317bab72cabce6ec980ec95adce8a Mon Sep 17 00:00:00 2001 From: Isaac Good Date: Mon, 25 May 2026 15:37:19 -0700 Subject: [PATCH 1/2] Format all `instructions.append.md` to start with an H1 (required but ignored) and H2 --- exercises/practice/anagram/.docs/instructions.append.md | 2 ++ .../practice/complex-numbers/.docs/instructions.append.md | 4 +++- exercises/practice/knapsack/.docs/instructions.append.md | 4 +++- .../practice/roman-numerals/.docs/instructions.append.md | 2 ++ exercises/practice/strain/.docs/instructions.append.md | 2 ++ 5 files changed, 12 insertions(+), 2 deletions(-) diff --git a/exercises/practice/anagram/.docs/instructions.append.md b/exercises/practice/anagram/.docs/instructions.append.md index 2b17bb7a3..0f5c35b6a 100644 --- a/exercises/practice/anagram/.docs/instructions.append.md +++ b/exercises/practice/anagram/.docs/instructions.append.md @@ -1,3 +1,5 @@ # Instructions Append +## Implementation + You must return the anagrams in the same order as they are listed in the candidate words. diff --git a/exercises/practice/complex-numbers/.docs/instructions.append.md b/exercises/practice/complex-numbers/.docs/instructions.append.md index 0f4936665..7a08e5453 100644 --- a/exercises/practice/complex-numbers/.docs/instructions.append.md +++ b/exercises/practice/complex-numbers/.docs/instructions.append.md @@ -1,4 +1,6 @@ -# Append +# Instructions append + +## Implementation You will have to implement your own equality operator for the `ComplexNumber` object. This will pose the challenge of comparing two floating point numbers. diff --git a/exercises/practice/knapsack/.docs/instructions.append.md b/exercises/practice/knapsack/.docs/instructions.append.md index 9a440b62d..e0ada342d 100644 --- a/exercises/practice/knapsack/.docs/instructions.append.md +++ b/exercises/practice/knapsack/.docs/instructions.append.md @@ -1,3 +1,5 @@ +# Instructions append + ## Item representation -The items are represented by the `Item` struct in `Item.swift`. \ No newline at end of file +The items are represented by the `Item` struct in `Item.swift`. diff --git a/exercises/practice/roman-numerals/.docs/instructions.append.md b/exercises/practice/roman-numerals/.docs/instructions.append.md index 489d47ec7..a8a437ba4 100644 --- a/exercises/practice/roman-numerals/.docs/instructions.append.md +++ b/exercises/practice/roman-numerals/.docs/instructions.append.md @@ -1,3 +1,5 @@ +# Instructions append + ## Adding method to the Int structure This exercise focuses on adding methods to the `Int` structure in Swift. diff --git a/exercises/practice/strain/.docs/instructions.append.md b/exercises/practice/strain/.docs/instructions.append.md index a6b64d979..03c73b7e0 100644 --- a/exercises/practice/strain/.docs/instructions.append.md +++ b/exercises/practice/strain/.docs/instructions.append.md @@ -1,3 +1,5 @@ +# Instructions append + ## Adding method to the Array structure This exercise focuses on adding methods to the `Array` structure in Swift. From ef1d1791a1d2a9d35ee8eeb6b8001eb2976a3881 Mon Sep 17 00:00:00 2001 From: Isaac Good Date: Tue, 26 May 2026 22:17:14 -0700 Subject: [PATCH 2/2] Update the header to "Track specific instructions" --- exercises/practice/anagram/.docs/instructions.append.md | 2 +- exercises/practice/complex-numbers/.docs/instructions.append.md | 2 +- exercises/practice/knapsack/.docs/instructions.append.md | 2 +- exercises/practice/roman-numerals/.docs/instructions.append.md | 2 +- exercises/practice/strain/.docs/instructions.append.md | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/exercises/practice/anagram/.docs/instructions.append.md b/exercises/practice/anagram/.docs/instructions.append.md index 0f5c35b6a..b11c894ef 100644 --- a/exercises/practice/anagram/.docs/instructions.append.md +++ b/exercises/practice/anagram/.docs/instructions.append.md @@ -1,5 +1,5 @@ # Instructions Append -## Implementation +## Track specific instructions You must return the anagrams in the same order as they are listed in the candidate words. diff --git a/exercises/practice/complex-numbers/.docs/instructions.append.md b/exercises/practice/complex-numbers/.docs/instructions.append.md index 7a08e5453..f7ce00f40 100644 --- a/exercises/practice/complex-numbers/.docs/instructions.append.md +++ b/exercises/practice/complex-numbers/.docs/instructions.append.md @@ -1,6 +1,6 @@ # Instructions append -## Implementation +## Track specific instructions You will have to implement your own equality operator for the `ComplexNumber` object. This will pose the challenge of comparing two floating point numbers. diff --git a/exercises/practice/knapsack/.docs/instructions.append.md b/exercises/practice/knapsack/.docs/instructions.append.md index e0ada342d..971412d44 100644 --- a/exercises/practice/knapsack/.docs/instructions.append.md +++ b/exercises/practice/knapsack/.docs/instructions.append.md @@ -1,5 +1,5 @@ # Instructions append -## Item representation +## Track specific instructions The items are represented by the `Item` struct in `Item.swift`. diff --git a/exercises/practice/roman-numerals/.docs/instructions.append.md b/exercises/practice/roman-numerals/.docs/instructions.append.md index a8a437ba4..a3ae4b855 100644 --- a/exercises/practice/roman-numerals/.docs/instructions.append.md +++ b/exercises/practice/roman-numerals/.docs/instructions.append.md @@ -1,6 +1,6 @@ # Instructions append -## Adding method to the Int structure +## Track specific instructions This exercise focuses on adding methods to the `Int` structure in Swift. This is easiest done through using [extensions][extensions]. diff --git a/exercises/practice/strain/.docs/instructions.append.md b/exercises/practice/strain/.docs/instructions.append.md index 03c73b7e0..b2235b96b 100644 --- a/exercises/practice/strain/.docs/instructions.append.md +++ b/exercises/practice/strain/.docs/instructions.append.md @@ -1,6 +1,6 @@ # Instructions append -## Adding method to the Array structure +## Track specific instructions This exercise focuses on adding methods to the `Array` structure in Swift. This is easiest done through using [extensions][extensions].