aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthiasMuth <99873492+MatthiasMuth@users.noreply.github.com>2023-09-25 00:55:56 +0200
committerGitHub <noreply@github.com>2023-09-25 00:55:56 +0200
commit382a8f8e198c7ef60fea41e1c2095ef4a01a68d4 (patch)
tree0289188b8321b1db4bb63ccb4c7bacb728e21eb8
parent3f89318f4ab1cc13edf706dd1bcbe3ae18102aa7 (diff)
downloadperlweeklychallenge-club-382a8f8e198c7ef60fea41e1c2095ef4a01a68d4.tar.gz
perlweeklychallenge-club-382a8f8e198c7ef60fea41e1c2095ef4a01a68d4.tar.bz2
perlweeklychallenge-club-382a8f8e198c7ef60fea41e1c2095ef4a01a68d4.zip
Update README.md
-rw-r--r--challenge-235/matthias-muth/README.md7
1 files changed, 2 insertions, 5 deletions
diff --git a/challenge-235/matthias-muth/README.md b/challenge-235/matthias-muth/README.md
index 6c3d9715d7..d4c3c937ff 100644
--- a/challenge-235/matthias-muth/README.md
+++ b/challenge-235/matthias-muth/README.md
@@ -6,20 +6,17 @@
> You are given an array of integers.<br/>
> Write a script to find out if removing ONLY one integer makes it strictly increasing order.<br/>
-> <br/>Example 1<br/>
->
+> <br/>
+> Example 1<br/>
> Input: @ints = (0, 2, 9, 4, 6)<br/>
> Output: true<br/>
->
> Removing ONLY 9 in the given array makes it strictly increasing order.<br/>
> <br/>
> Example 2<br/>
->
> Input: @ints = (5, 1, 3, 2)<br/>
> Output: false<br/>
> <br/>
> Example 3<br/>
->
> Input: @ints = (2, 2, 3)<br/>
> Output: true<br/>