From 382a8f8e198c7ef60fea41e1c2095ef4a01a68d4 Mon Sep 17 00:00:00 2001
From: MatthiasMuth <99873492+MatthiasMuth@users.noreply.github.com>
Date: Mon, 25 Sep 2023 00:55:56 +0200
Subject: Update README.md
---
challenge-235/matthias-muth/README.md | 7 ++-----
1 file 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.
> Write a script to find out if removing ONLY one integer makes it strictly increasing order.
->
Example 1
->
+>
+> Example 1
> Input: @ints = (0, 2, 9, 4, 6)
> Output: true
->
> Removing ONLY 9 in the given array makes it strictly increasing order.
>
> Example 2
->
> Input: @ints = (5, 1, 3, 2)
> Output: false
>
> Example 3
->
> Input: @ints = (2, 2, 3)
> Output: true
--
cgit