From ec6cfc7748c14d1fbfbd908367685bd2c1b4b7ba Mon Sep 17 00:00:00 2001 From: zanninso Date: Thu, 4 Jul 2024 17:59:30 +0100 Subject: [PATCH] docs: fix formatting --- subjects/java/checkpoints/steady-sequence/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/java/checkpoints/steady-sequence/README.md b/subjects/java/checkpoints/steady-sequence/README.md index f8bd48bea..ab278ade7 100644 --- a/subjects/java/checkpoints/steady-sequence/README.md +++ b/subjects/java/checkpoints/steady-sequence/README.md @@ -2,7 +2,7 @@ ### Instructions -Create a class named SteadySequence that includes a method to determine the length of the longest consecutive sequence in an unsorted array of integers. The "longest consecutive sequence" refers to the sequence with the longest stretch of elements that increase strictly by 1. The elements of this sequence may appear in any order within the array. +Create a class named `SteadySequence` that includes a method to determine the length of the longest consecutive sequence in an unsorted array of integers. The "longest consecutive sequence" refers to the sequence with the longest stretch of elements that increase strictly by 1. The elements of this sequence may appear in any order within the array. ### Expected Class