From 89b84978599159fe3b2a9cf263b395b06e0401be Mon Sep 17 00:00:00 2001 From: acidduk Date: Mon, 4 Aug 2025 17:00:44 +0100 Subject: [PATCH] Update ArrayJumpingGame.ts (#2277) Improve contract description --- src/CodingContract/contracts/ArrayJumpingGame.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/CodingContract/contracts/ArrayJumpingGame.ts b/src/CodingContract/contracts/ArrayJumpingGame.ts index 71673397e..e9e33d97f 100644 --- a/src/CodingContract/contracts/ArrayJumpingGame.ts +++ b/src/CodingContract/contracts/ArrayJumpingGame.ts @@ -64,8 +64,8 @@ export const arrayJumpingGame: Pick< "i to i+n.", "\n\nAssuming you are initially positioned", "at the start of the array, determine the minimum number of", - "jumps to reach the end of the array.\n\n", - "If it's impossible to reach the end, then the answer should be 0.", + "jumps to reach the last index.\n\n", + "If it's impossible to reach the last index, then the answer should be 0.", ].join(" "); }, difficulty: 3,