Skip to content

Commit

Permalink
Various fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
meatball133 committed Jan 7, 2024
1 parent 07eac30 commit de2e654
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions exercises/practice/reverse-string/.approaches/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
},
"approaches": [
{
"uuid": "5d42dc83-2473-425a-90bd-bf03f92b8c8b",
"uuid": "f7b0f17c-4e8e-43a7-92e2-56580aea818c",
"slug": "array",
"title": "Use an array",
"blurb": "Use an array to store the values.",
"authors": ["meatball133"]
},
{
"uuid": "9952fef5-9f2f-4575-94fc-bc4e96593cd6",
"uuid": "c298d774-b9b8-48e6-98c3-256dffcf8c73",
"slug": "string-builder",
"title": "Uses String::Builder",
"blurb": "Uses String::Builder to build the string.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ end

For more information, check the [Array approach][approach-array].

## Approach: Using a String::Builder
## Approach: Using String::Builder

This approach uses the [`String::Builder` class][string-builder] to build the reversed string.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Using an array
# Using String::Builder

```crystal
module ReverseString
Expand Down
2 changes: 1 addition & 1 deletion exercises/practice/reverse-string/.articles/config.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"articles": [
{
"uuid": "c90d5c22-3133-4f1b-88b6-3ea9b6df298e",
"uuid": "a55c4211-d3fa-4451-894b-b641aff51177",
"slug": "performance",
"title": "Performance deep dive",
"blurb": "Deep dive to find out the performance between different approaches",
Expand Down

0 comments on commit de2e654

Please sign in to comment.